腾讯科技讯(林靖东)北京时间11月11日消息,据国外媒体报道,开源博客平台WordPress母公司Automattic首席执行官麦特穆伦维格(Matt Mullenweg)周四证实,WordPress平台上的博客总数已经超过了6000万个,现在WordPress平台每月的独立访问人数已超过3亿人。
但是据穆伦维格称,这还只是一个开始。WordPress在社交和移动领域的开发计划进展顺利,将在未来几个月迎来更大的增长。 Read more
腾讯科技讯(林靖东)北京时间11月11日消息,据国外媒体报道,开源博客平台WordPress母公司Automattic首席执行官麦特穆伦维格(Matt Mullenweg)周四证实,WordPress平台上的博客总数已经超过了6000万个,现在WordPress平台每月的独立访问人数已超过3亿人。
但是据穆伦维格称,这还只是一个开始。WordPress在社交和移动领域的开发计划进展顺利,将在未来几个月迎来更大的增长。 Read more
一、让WordPress “评论链接”在新窗口中打开
编辑:首页模板 (index.php)添加target=”_blank”
将:
<a href=”<?php the_permalink() ?>#comments” target=”_blank”><?php comments_number
修改为:
<a href=”<?php the_permalink() ?>#comments” target=”_blank”><?php comments_number
二、让WordPress “文章链接”在新窗口中打开
编辑:首页模板 (index.php)添加target=”_blank”
将:
<h2><a href=”<?php the_permalink() ?>” rel=”bookmark”><?php the_title(); ?></a></h2>
修改为:
<h2><a href=”<?php the_permalink() ?>” target=”_blank” rel=”bookmark”><?php the_title(); ?></a></h2>
三、让WordPress “时间链接”在新窗口中打开
编辑:首页模板 (index.php)添加target=”_blank”
<div>
<span><a href=”<?php the_permalink(); ?>”><?php the_time(‘d’); ?></a></span>
<span><?php the_time(‘M Y’); ?> </span>
</div>
修改为:
<div>
<span><a href=”<?php the_permalink(); ?>” target=”_blank”><?php the_time(‘d’); ?></a></span>
<span><?php the_time(‘M Y’); ?> </span>
</div>
其实就是添加了target=”_blank”才使得能在新窗口打开连接。那我们拓展下思维,在我们的文章中夜可以添加target=”_blank”以便在新窗口中打开连接。
东子原创 转载请注明出处:http://www.bocn.net/blog/index.php/archives/268
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片、插画、设计作品、等内容,如需使用,请与原作者联系,版权归原作者所有。
版权申明:本站文章均来自网络,如有侵权,请联系:sky12300#126.com(将#换成@) ,我们收到并确认后将立即删除,本站不承担任何法律责任!谢谢!!