たとえば(私の場合)ここにいくつかのコードがあります、
<?php
woo_post_inside_before();
if ( $woo_options['woo_post_content'] != 'content' AND !is_singular() )
woo_image( 'width='.$woo_options['woo_thumb_w'].'&height='.$woo_options['woo_thumb_h'].'&class=thumbnail '.$woo_options['woo_thumb_align'] );
the_title( $title_before, $title_after );
woo_post_meta();
?>
次の PHP コードを配置して、前に出力されるようにしますwoo_post_meta();
。
<?php if (is_single()) : ?>
<div class="testb"><img src="http://whatthenerd.com/what/wp-content/themes/canvas/300.jpg" alt="test Ad" /></div>
<?php endif; ?>
文字どおりに表示する必要がある場合、コードは次のようになります。
<?php
woo_post_inside_before();
if ( $woo_options['woo_post_content'] != 'content' AND !is_singular() )
woo_image( 'width='.$woo_options['woo_thumb_w'].'&height='.$woo_options['woo_thumb_h'].'&class=thumbnail '.$woo_options['woo_thumb_align'] );
the_title( $title_before, $title_after );
<?php if (is_single()) : ?>
<div class="testthisad"><img src="http://whatthenerd.com/what/wp-content/themes/canvas/300.jpg" alt="test Ad" /></div>
<?php endif; ?>
woo_post_meta();
?>
どうやらそれは正しい方法ではありません。それで、どうすればいいですか?