(More more more) how do you like it, how do you like it. fixes #2991

git-svn-id: https://develop.svn.wordpress.org/trunk@4070 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2006-08-01 04:54:23 +00:00
parent 24c76ec9d6
commit 1eba7bb0f3
1 changed files with 5 additions and 1 deletions

View File

@ -77,7 +77,11 @@ function get_the_content($more_link_text = '(more...)', $stripteaser = 0, $more_
$file = $pagenow; //$_SERVER['PHP_SELF'];
$content = $pages[$page-1];
$content = explode('<!--more-->', $content, 2);
if ( preg_match('/<!--more(.+?)?-->/', $content, $matches) ) {
$content = explode($matches[0], $content, 2);
if ( !empty($matches[1]) )
$more_link_text = strip_tags(wp_kses_no_null(trim($matches[1])));
}
if ( (false !== strpos($post->post_content, '<!--noteaser-->') && ((!$multipage) || ($page==1))) )
$stripteaser = 1;
$teaser = $content[0];