我有一段代码,从帖子中摘录了第一段,附在p
标签
我想添加一个;Read more"E;链接内部p
标签指的是全文;。
请帮忙。
function first_paragraph() {
global $post, $posts;
$first_para = \'\';
ob_start();
ob_end_clean();
$post_content = $post->post_content;
$post_content = apply_filters(\'the_content\', $post_content);
$output = preg_match_all(\'%(<p[^>]*>.*?</p>)%i\', $post_content, $matches);
$first_para = $matches [1] [0];
echo $first_para;
}