使用the_content
仅当您在一个页面上时才勾选:
add_filter( \'the_content\', \'my_button_function\' );
function my_button_function( $content ) {
// See if it\'s a single post or a loop
if ( is_single() && in_the_loop() && is_main_query() ) {
return $content . "<button onclick=\\"buttonAction()\\" p style=\\"font-size:10px\\" id=\\"ActionButton\\">ACTION</button>";
}
return $content;
}
这将仅在您发表一篇文章时添加按钮,并将在内容末尾添加按钮。
进一步阅读:WordPress Developer\'s website.