$more_link_text";
}
/* 追記の前に表示される文字列 */
$more_before_content = '
追加ー';
/* 追記の後に表示される文字列 */
$more_after_content = '
';
/* Action */
if(!is_admin()){
add_filter('the_content','CC_more');
}
function CC_more($content){
global $pages,$page,$more,$more_link_text,$more_before_content,$more_after_content,$morelink_Custmize;
if ( preg_match('//', $pages[$page-1], $matches) ) {
list($before_content,$after_content) = explode($matches[0], $pages[$page-1], 2);
}
if($after_content && $more){
$content = $before_content.$more_before_content.$after_content.$more_after_content;
}elseif($after_content){
preg_match('|(.*?)|',$content,$matches);
$permanent_link = $matches[1];
$anchor = $matches[2];
$classname = $matches[3];
$more_link_text =$matches[4];
$morelink_Custmize = CC_more_link($permanent_link,$more_link_text,$anchor,$classname);
$content = str_replace($matches[0],$morelink_Custmize,$content);
}
return $content;
}