我正在编写一个Wordpress插件,它会在帖子标题下方添加一个按钮(或任何HTML元素)(如果不可能,则在上面添加)。我怎么能这样做?
答案 0 :(得分:1)
您想使用负责打印标题的过滤器。我不确定它到底是哪一个,但这是函数(它可能是single_post_title
所示):
add_filter( 'single_post_title', 'the_post_title', 10, 2 );
function my_more_link( $post_title ) {
$button_code = "your_button_HTML_here";
return str_replace( $post_title, $post_title . $button_code );
}