欢迎访问服务器技术网-www.fuwuqijishu.com

WordPress实现文章内容收缩和展开功能

网站建设 fuwuqijishu 2年前 (2022-09-04) 22次浏览 0个评论 扫描二维码

我们经常在浏览有些网站的时候看到内容只展示部分内容,如果需要阅读全文的话需要点击阅读更多内容按钮才可以展现全部内容。这样的好处就是不至于一次将文字页面全部打开,使得页面不至于一次加载太长。这个功能到底如何实现的呢?是否可以在WordPress程序中实现?

看到大部分WordPress主题都不带这样的功能,需要我们自行修改模板来实现。那具体如何实现的呢?这里我们一起整理实现WordPress文章内容收缩和展开的功能。

第一、JS代码部分

<script type=”text/javascript”>
jQuery(document).ready(
function(jQuery){
jQuery(‘.collapseButton’).click(
function(){
jQuery(this).parent().parent().find(‘.xContent’).slideToggle(‘slow’);
}
);
}
);
</script>

需要将JS部分添加到内容页模板中,或者我们有全局JS的可以添加。

第二、内置功能模块

// 收缩和展开功能 itbulu.com修改
function xcollapse($atts, $content = null){
extract(shortcode_atts(array(“title”=>””),$atts));
return ‘<div style=”margin: 0.5em 0;”>
<div class=”xControl”>
<span class=”xTitle”>’.$title.'</span><i class=”fa fa-plus-square” aria-hidden=”true”></i><a href=”javascript:void(0)” class=”collapseButton xButton”>内容收缩和展开</a>
<div style=”clear: both;”></div>
</div>
<div class=”xContent” style=”display: none;”>’.$content.'</div>
</div>’;
}
add_shortcode(‘collapse’, ‘xcollapse’);

我们可以将代码添加到当前主题Functions.php文件中。

第三、添加短代码按钮

function appthemes_add_collapse() {
?>
<script type=”text/javascript”>
if ( typeof QTags != ‘undefined’ ) {
QTags.addButton( ‘collapse’, ‘内容收缩按钮’, ‘

‘ );
}
</script>
<?php
}
add_action(‘admin_print_footer_scripts’, ‘appthemes_add_collapse’ );

同样添加到Functions.php文件中,用来编辑器中有一个按钮,这样添加的时候直接点击按钮。

第四、实现方法

根据实际需要我们可以在编辑内容的时候以上面格式出现。把需要展现的内容添加到对应标签中。

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2413.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900