函数.php条件标记仅显示在single.php中?

时间:2011-05-02 作者:Jason

//Geo Map
add_action( \'woo_post_inside_after\', \'my_geo_mashup\' );
function my_geo_mashup() {
    global $post;
if ( in_category(\'listings\') ) {
        echo GeoMashup::map();
       }
}
只在分类为“列表”的单篇文章中嵌入我的地图标签,但嵌入的标签也显示在文章索引中(拇指、标题、元、摘录),我需要将其从文章循环中删除,并仅显示在单篇文章中。php

有什么想法?

1 个回复
最合适的回答,由SO网友:Michael 整理而成
if ( is_single() && in_category(\'listings\') ) { 
结束