2016-04-12 37 views
0

Anlayabildiğim bir yaşam için yapamadığım bir sorunum var. Kodumda meta etiketler kullanıyorum, böylece etiketleri ve permalinkleri göstermek isteyip istemediğimi seçebilirim ve bir sebepten dolayı meta etiketi etiketlerde mükemmel çalışır, ancak permalinkste değil (sadece permalinkleri gizler) ve onları hiç gösteremiyorum).Meta etiketleri permalink (tumblr) üzerinde çalışmayacaksa (0)

<meta name="if:Show Permalink" content="0" /> 
<meta name="if:Show Tags" content="0" /> 

{block:IfShowPermalink} 
<div id="permalink"> 
{block:NoteCount} 
<a href="{Permalink}">{NoteCountWithLabel}{/block:NoteCount}</a> 
{block:ContentSource} 
<span style="font-size:8px">/</span> <a href="{SourceURL}">{SourceTitle}</a> 
{/block:ContentSource} 
</div> 
{/block:IfShowPermalink} 

{block:IfShowTags} 
<div id="tags"> 
{block:HasTags} 
{block:Tags} <a href="{TagURL}">#{Tag}</a>{/block:Tags} 
{/block:HasTags} 
</div> 
{/block:IfShowTags} 

cevap

0

Untested, ama çok erken permalink çapa kapanıyor inanıyoruz:

{block:IfShowPermalink} 
<div id="permalink"> 
    {block:NoteCount} 
    <a href="{Permalink}">{NoteCountWithLabel}</a> 
    {/block:NoteCount} 
    {block:ContentSource} 
    <span style="font-size:8px">/</span> <a href="{SourceURL}">{SourceTitle}</a> 
    {/block:ContentSource} 
</div> 
{/block:IfShowPermalink} 
+0

İşe yaradı! Çok teşekkür ederim! – Jenny