所以我想在这里使用阅读更多标签:http: //codex.wordpress.org/Customizing_the_Read_More
但我正在使用 get_page 函数:
$page_id = 1;
$include = get_page($page_id);
$content = apply_filters('the_content',$include->post_content);
当我通过 WYSIWYG 页面插入更多标签时,当我回显 $content 时它会被忽略。
我想我需要在 apply_filters 中添加一些东西,但我不确定是什么