我正在使用一个插件将帖子分为多个子帖子。现在,我想在内容的末尾添加一行文本,并在发布后使用分页符标记和快捷码。
但我写的代码不起作用:
add_filter(\'publish_post\', \'increment_content\');
function increment_content($content) {
$content .= \'<!--nextpage--> [display-posts category_display=\\"true\\" image_size=\\"thumbnail\\" title=\\"Suggested Posts\\" wrapper=\\"div\\" wrapper_class=\\"suggested\\"]\';
return $content;
}
我做错了什么?
最合适的回答,由SO网友:Nathan Powell 整理而成
尝试使用add_filter(\'the_content\', \'increment_content\', 20);
应按照您的假设添加当前函数。