我正致力于在所有帖子上添加社交媒体按钮。我正在使用此代码:
function wintersong_custom_buttons($content) {
$new_content = 'Button HTML here.';
$content .= $new_content;
return $content;
}
add_filter('the_content', 'wintersong_custom_buttons');
我尝试添加is_single
,但只有在您查看帖子时才会显示按钮。
我希望它们只出现......
我该怎么做?
答案 0 :(得分:0)
溶液:
function wintersong_custom_buttons($content) {
if( ! is_page() ) {
$new_content = 'Button HTML here';
$content .= $new_content;
$content = preg_replace('/\s+/', ' ', trim($content));
}
return $content;
}
add_filter('the_content', 'wintersong_custom_buttons');