隐藏自定义帖子类型中的简单社交按钮插件输出

时间:2014-04-06 15:38:58

标签: php wordpress wordpress-plugin wordpress-theming

我正在使用自定义帖子类型,现在我需要隐藏Simple Social Buttons插件生成的输出。我在remove_filter('the_content', 'plugin_action_links', 100); single-magazine_post_type.php下方get_header()尝试了此代码:{{1}},但没有效果。有什么建议吗?

PS:存在任何可以解决此问题的插件,而无需一直触摸代码?

1 个答案:

答案 0 :(得分:1)

insert_buttons中名为simple-social-buttons/simple-social-buttons.php的简单社交插件中有一个功能。此功能将社交按钮添加到您的内容中。你可以在那里做个例外;

function insert_buttons($content) {
    global $post;
    if ( !empty( $post ) ) {
        if ( get_post_type( $post ) == "your_post_type") {
            return $content;   
        }
    }
   ......
}

修改:怎么做?

1)在管理面板中打开插件编辑器

enter image description here

2)从列表中选择Simple Social Buttons

enter image description here

3)从列表中选择buttons/simple-social-buttons.php

enter image description here

4)如上所述更新insert_buttons功能

enter image description here