我试图在一个帖子的摘录和内容上生成内容之前附加一个投票插件的div。这是我在插件中的内容:
if (get_option('ilt_onPage') == '1') {
function putILikeThis($content) {
if(!is_feed() && !is_single() && !in_category('3') ) {
$likethisbox.= getILikeThis('put');
}
$content = $likethisbox . $content;
return $content;
}
add_filter('the_content', putILikeThis);
}
if (get_option('ilt_onPage') == '1') {
function putILikeThis1($excerpt) {
if(!is_feed() && !is_archive() && in_category('3') ) {
$likethisbox.= getILikeThis('put');
}
$excerpt = $likethisbox . $excerpt;
return $excerpt;
}
add_filter('the_excerpt', putILikeThis1);
}
关于我做错的任何想法?
答案 0 :(得分:0)
想出来。几个关键的事情都出了问题。我在这里使用的代码:
if (get_option('ilt_onPage') == '1') {
function putILikeThis($content) {
if(!is_feed() && !is_page() && in_category('revocations') ) { //it now sees the category!
$likethisbox= getILikeThis('put'); //No .= period behind the =
}
return $likethisbox . $content; //I was putting these into a $ when needed to return them
}
add_filter('the_content', 'putILikeThis'); }