我正在使用自定义帖子类型,现在我需要隐藏Simple Social Buttons插件生成的输出。我在remove_filter('the_content', 'plugin_action_links', 100);
single-magazine_post_type.php
下方get_header()
尝试了此代码:{{1}},但没有效果。有什么建议吗?
PS:存在任何可以解决此问题的插件,而无需一直触摸代码?
答案 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)在管理面板中打开插件编辑器
2)从列表中选择Simple Social Buttons
3)从列表中选择buttons/simple-social-buttons.php
4)如上所述更新insert_buttons
功能