我想在所有有catogery“音乐”的帖子顶部添加一个按钮,以下是我尝试过的内容,但根本不起作用。请给我一些建议。
function add_go_back_btn($content) {
global $post;
$cat = get_the_category();
$post_type = get_post_type();
if($cat === \'music\' && $post_type === \'post\') {
return \'<div><a href="/music">This is a button</a></div>\' . $content;
}
else return $content;
}
add_filter( \'the_content\', \'add_go_back_btn\' );