我有一个简单的插件,在每篇文章的末尾添加一个签名。但它也出现在用户评论部分之后。如何避免后者?
Update
我曾经尝试通过添加一个静态变量来运行该函数。现在签名只是添加到评论部分。我需要的正好相反。希望这有帮助。
<?php
/*
header...
*/
if( !function_exists("add_signature")){
function add_signature($content){
/* code related to update
static $once;
if ( $once !== null )
return $content;
else
$once = \'done\';
*/
if( !is_page() )
return $content . "signature";
}
add_filter(\'the_content\', \'add_signature\');
}
?>