WordPress文章页添加展开/收缩功能
很多时候我们在WordPress上发布一些文章的时候里面都包含了很多的代码,我一般又不喜欢把代码压缩起来而喜欢让代码格式化显示,但是格式化显示通常会让文章内容看起来很多,不便于访问者浏览,所以今天就介绍一种可以展开/收缩文章内容的功能。
方法:
1.在header.php中添加下面的代码,或者也可以单独写进一个js文件中然后在header.php中引入也可以。我是引入的。
1
2
3
4
5
6
7
|
<script type= "text/javascript" > jQuery(document).ready( function (jQuery) { jQuery( '.collapseButton' ).click( function () { jQuery(this).parent().parent().find( '.xContent' ).slideToggle( 'slow' ); }); }); </script> |
2.在function.php中加入下面的代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//展开收缩功能 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> <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' ); |
3.可以优化一下代码,因为默认是靠左的,不好看,我们让他往中间一点显示,具体的距离可以自行调整。当然这一步忽略也是可以的。
在style.css中添加以下代码:
1
2
3
|
.xControl { padding-left: 32px; } |
4.下面就可以在文章中通过插入短代码
[collapse title=”标题”]需点击展开的内容[/collapse]
来使用此功能了。其中title是指添加一些提示内容,当然也可以省略title不写。