这可能是一个愚蠢的问题,因为我是wp的新手,但我正在尝试创建自定义的帖子Feed。
基本上我有这个循环
while ( have_posts() ){
the_post();
the_title();
the_post_thumbnail('content-thumb');
//and here i have installed facebook share plugin
//so if i put the_content() it would display share button
//the problem is it also display post text and everything else while i only
//need that plugin button or whatever comes with that plugin
}
答案 0 :(得分:1)
Facebook共享插件很可能将按钮代码挂钩到the_content
过滤器钩子。唯一能避免内容兼得的方法是'和“facebook”按钮'同时显示两个是使用the_content
从remove_filter()
取消勾选按钮,然后手动将按钮添加到页面。
详细了解Plugin API/Hooks article中的WordPress挂钩。
参考: