wordpress常用短代码(简码)Shortcodes
03月6日, 2014 wordpress wordpress技巧 半夏凉歌
03月6日, 2014
一、在线mp3播放:
打开当前主题的functions.php,在第一个<?php之后,最后一个?>之前加入以下代码:
<?php function mp3player($atts, $content=null){ extract(shortcode_atts(array("auto"=>'0'),$atts)); return '<embed src="'.get_bloginfo("template_url").'/mp3player.swf?url='.$content.'&autoplay='.$auto.'" type="application/x-shockwave-flash"wmode="transparent" allowscriptaccess="always" width="400" height="30">'; } add_shortcode('mp3','mp3player'); ?>
然后下载个mp3播放器
然后将下载的mp3播放器复制到主题目录下,就可以使用了。使用时,在后台用html模式编辑文章加入
[mp3 auto="1"]歌曲链接[/mp3]
其中。auto=”1″可选,不填默认为auto=”0″,歌曲不自动播放。
二、显示访客IP:
function banxia_user_ip() { $ip = $_SERVER['REMOTE_ADDR']; return $ip; } add_shortcode('user_ip', 'banxia_user_ip');
使用方法在后台用html模式编辑文章加入
[ip]
即可显示访客IP。