【问题标题】:Social Media buttons appearing on pages页面上出现的社交媒体按钮
【发布时间】:2016-07-19 22:27:39
【问题描述】:

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

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

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

我尝试添加is_single,但这些按钮仅在您查看帖子时出现。

我希望它们只出现...

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

我该怎么做?

【问题讨论】:

    标签: php wordpress posts


    【解决方案1】:

    解决方案:

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

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2023-03-28
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2019-04-17
      • 2016-06-29
      • 2012-08-19
      • 2013-06-03
      相关资源
      最近更新 更多