Wordpress bir yazı nasıl bir etiketin varlığı için kontrol edebilirim?

2 Cevap php

Quick question about Wordpress PHP: I am writing a theme and I want to display (on the main index page) one icon if my post has one tag, and another if it has the other.

Gibi bir şey yazdı

<?php has_tag('pc') { ?><img src="<?php bloginfo('template_directory'); ?>/images/pc-icon.gif"><?php }; ?>
<?php has_tag('mb') { ?><img src="<?php bloginfo('template_directory'); ?>/images/mb-icon.gif"><?php }; ?>

Ama bana bir hata verir. Herkes yardımcı olabilir?

Teşekkürler

2 Cevap

<?php if(has_tag('pc')) { ?><img src="<?php bloginfo('template_directory'); ?>/images/pc-icon.gif"><?php }; ?>
<?php if(has_tag('mb')) { ?><img src="<?php bloginfo('template_directory'); ?>/images/mb-icon.gif"><?php }; ?>

Sen if kaçırıyorsun.

Bu deneyin:

<?php if(has_tag('pc')) { ?><img src="<?php bloginfo('template_directory'); ?>/images/pc-icon.gif"><?php }; ?>
<?php if(has_tag('mb')) { ?><img src="<?php bloginfo('template_directory'); ?>/images/mb-icon.gif"><?php }; ?>