Плагин Wordpress добавляет Div перед содержанием - PullRequest
0 голосов
/ 12 января 2011

Я пытаюсь присоединить 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 голосов
/ 14 января 2011

Разобрался. Несколько ключевых вещей шли не так. Код, который я использовал здесь:

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