如何使用WPEC 3.8回显loop-page.php上的标记描述

时间:2011-05-08 作者:Dean Rowe

我正在尝试在标记的页面上显示“标记描述”。我在循环页面中添加了一个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

谢谢你的帮助

链锯

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
}

结束

相关推荐

Template tags for Buddypress

是否有一个地方可以显示所有可用的模板标记,以及如何使用它们,类似于wordpress的做法?我正在尝试链接到循环中的配置文件。输出的Ex<a href=\"http://www.mysite.com/members/Tom/\">Tom\'s Profile</a> 试过这个<?php echo( bp_core_get_userlink() ) ?> 但它出错了这给了我作者的名字和url,但我只需要配置文件的url<?php echo( bp