【发布时间】:2016-07-19 22:27:39
【问题描述】:
我正在努力为所有帖子添加社交媒体按钮。我正在使用此代码:
function wintersong_custom_buttons($content) {
$new_content = 'Button HTML here.';
$content .= $new_content;
return $content;
}
add_filter('the_content', 'wintersong_custom_buttons');
我尝试添加is_single,但这些按钮仅在您查看帖子时出现。
我希望它们只出现...
- 当用户查看所有帖子时
- 当用户点击帖子并查看其所有内容时
我该怎么做?
【问题讨论】: