Wordpress插件在内容之前附加Div

时间:2011-01-12 15:25:02

标签: wordpress wordpress-plugin

我试图在一个帖子的摘录和内容上生成内容之前附加一个投票插件的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);
}

关于我做错的任何想法?

1 个答案:

答案 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'); }