<?php
function my_more_link($link){
//制止more标签主动跳转
$link=preg_replace('/#more-\d+/i','',$link);
//我在more标签的核心加了一层 p, 用以更不便地自定义more标签在页面中的显示(应用 p.read-more)
$link=str_replace('<a','<p class="read-more"><a rel="nofollow" title="持续浏览: '.get_the_title($post->post_title).'"',$link);
//闭合新包裹的 p
$link=str_replace('</a>','</a></p>',$link);
return $link;
}
add_filter('the_content_more_link','my_more_link');//把函数追退出主题
?>
<?php //这是为了在单篇文章(或页面)间接显示全副内容,而不应用以下的判别
if(is_singular()){the_content();}else{
//定义两个$
$pc=$post->post_content;
$st=strip_tags(apply_filters('the_content',$pc));
//判别能否存在 内置摘要
if(has_excerpt())
the_excerpt();
/*应用正则表白式尝试婚配more标签,
并判别假如存在more标签, 或许注释内容长度小于300, 则间接以more标签形式显示,
即是说, 有more便显示more, 没more且长度小于300则间接显示全文.
我应用了mb_strwidth来判别长度.
*/
elseif(preg_match('/<!--more.*?-->/',$pc) || mb_strwidth($st)<300)
the_content('Read more »');
//否则...以下
elseif(function_exists('mb_strimwidth'))//判别能否支持mb_strimwidth函数
echo'<p>'//mb_strimwidth截断后失去的是纯文本, 所以我给它包了一层 p
.mb_strimwidth($st,0,300,' ...')//对文本内容截断, 从地位0开端往后截取300长度, 超出局部以点点点代替
.'</p><p class="read-more"><a title="'//给截断的内容增加一个与 STEP 1 齐全如出一辙的"more标签"...
.the_title("持续浏览: ","",false)//留意这里与 STEP 1 相比, 应用了另一个函数来获取题目
.'" rel="nofollow" href="'
.post_permalink()
.'" class="more-link">Read more »</a></p>';
else the_content();//最初没有抉择的抉择...
}?>
以上就是安达网络工作室关于《较**的WordPress文章摘要(截断)方案分享》的一些看法。更多内容请查看本栏目更多内容!
the_post_thumbnail the_post_thumbnail 在 WordPress 中次要用来打印文章中设定的缩略图,而 get_the_post...
第一种办法:我的这个博客不断都在网上运转,明天想把它在本地架设一个,包括数据库都和网上的如出一辙。详...
很多冤家可能常常在一些网站上看到相似于“运转代码、复制代码、清空代码、另存为代码的动态代码运转框...
其次要用处是经过该办法, 完成后盾的生成菜枯燥用。 应用该性能之前,必需激活主题3.0+菜单性能。 办法如下...
WordPress网站在改换域名后,需求从新配置以后域名能力使得网站失常运转,很多人遇到过这样的状况,那么如何...
缺点文件/{Path}/wp-includes/registration-functions.php 要害代码: —-> <?php /** * Deprecated. N...