1

所以我想在这里使用阅读更多标签: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 中添加一些东西,但我不确定是什么

4

1 回答 1

1

您需要更改post_contentpost_excerpt以呼应所见即所得的摘录

        $page_id = 1;
        $include = get_page($page_id);
        $content =  apply_filters('the_content',$include->post_excerpt); 
        echo $content;
于 2013-03-05T19:59:00.930 回答