社交媒体按钮出现在页面上

时间:2016-07-19 13:20:03

标签: php wordpress posts

我正致力于在所有帖子上添加社交媒体按钮。我正在使用此代码:

function wintersong_custom_buttons($content) {
    $new_content = 'Button HTML here.';
    $content .= $new_content;   

    return $content;
}
add_filter('the_content', 'wintersong_custom_buttons');

我尝试添加is_single,但只有在您查看帖子时才会显示按钮。

我希望它们只出现......

  • 当用户查看所有帖子时
  • 当用户点击帖子并正在查看其中的所有内容时

我该怎么做?

1 个答案:

答案 0 :(得分:0)

溶液:

function wintersong_custom_buttons($content) {
    if( ! is_page() ) {
        $new_content = 'Button HTML here';
        $content .= $new_content;   
        $content = preg_replace('/\s+/', ' ', trim($content));
    }

    return $content;
}
add_filter('the_content', 'wintersong_custom_buttons');