利用WordPress短代码给文章添加卡片式内链 首先需要将如下代码放入你主题的函数模板里(functions.php) [php] /** * 卡片式文章内链功能 * https://www.yaxi.net/2018-03-20/1741.html */ function yx_embed_posts( $atts, $content = null ){ extract( shortcode_atts( array( 'ids' => ......继续阅读
为WordPress添加各种播放器短代码 添加音乐在线试听播放器 在主题的 functions.php 里添加如下代码: [php] function mp3player($atts, $content=null) { extract(shortcode_atts(array("auto"=>'no',"loop"=>'no'),$atts)); return '<embed sr......继续阅读
WordPress加入短代码运行框(无插件) 很多朋友可能经常在一些网站上看到类似于“运行代码、复制代码、清空代码、另存为代码的静态代码运行框,直接点击运行就能实施的查看效果,给访客带来了非常好的体验。WordPress也不例外,同样可以加入短代码运行框。 方法非常简单: 第一步:下载 run-code-OL.js 文件,上传至服务器。 第二步:在主题目录的functions.php适当位置添加如下代码: [php] /**添加可运行代码框*......继续阅读