Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想获取帖子的内容,直到我在创建新帖子时设置的阅读更多内容为止,到目前为止我能够获得内容
apply_filters('the_content', $post->post_content);
我只想在阅读更多之前得到,我正在将博客集成到主页,我只需要对文章的简要描述。
谢谢
这是WordPress codex中的一个功能,希望对您有所帮助。
<?php $content = get_the_content('Read more'); print $content; ?>