我正在尝试在标记的页面上显示“标记描述”。我在循环页面中添加了一个if语句。php已经无法在显示标记页面时仅显示自定义文本。。。
<?php } elseif ( is_tax ( \'product_tag\' ) ){ ?><h1 class="entry-title"><?php the_title(); ?> print out this text on page</h1>
。。。但我不知道输出标记描述的代码。
有人知道显示标签描述的代码吗?我希望它在上面代码中的H1之后。我正在尝试输出使用WPeC 3.8进入Wordpress Admin>Products>Product Tags>description时输入的描述。
我使用的是Twenty10主题,WPec 3.8和WP 3.1
谢谢你的帮助
链锯
最合适的回答,由SO网友:Bainternet 整理而成
从词条中找出这个词,并重复描述
elseif {is_tax ( \'product_tag\' ) ){
$term_slug = get_query_var( \'term\' );
$taxonomyName = get_query_var( \'taxonomy\' );
$current_term = get_term_by( \'slug\', $term_slug, $taxonomyName );
?><h1 class="entry-title"><?php echo $current_term->description; ?></h1> <?php
}