我已经将Like Button插件添加到我的wordpress页面,它在我的wordpress帖子的底部添加了一个喜欢/不喜欢的按钮。
我想改变显示按钮的位置(到我帖子的标题下方),但我找不到调用按钮的功能的位置。
我可以通过编辑其中一个php文件来改变它吗?
谢谢。
答案 0 :(得分:0)
您需要搜索the_content
挂钩的插件源代码并将其删除,如下所示:
remove_filter('the_content', 'same_function_name', 10)
确保最后一个数字与add_filter函数相同,否则无效。
然后你可以像这样创建自己的函数:
<?php
function my_new_button_position( $title ) {
$button_html = call_plugin_function_that_was_in_the_content_hook();
$title .= $button_html;
return $title;
}
add_filter( 'the_title', 'new_button_position' );
?>
call_plugin_function_that_was_in_the_content_hook()
是在内容挂钩中调用的函数。