WordPress 3.1 如何添加文章样式
2019-03-18 05:47:33来源: CodeCTO 阅读 ()
对于主题开发者来说,WordPress 3.1 一个比较有看点的新功能是加入了文章样式(Post Formats)的支持。本文简单说一下在主题里如何添加和显示不同的文章样式。
首先打开主题的 functions.php 文件,添加下面的代码,增加 aside、chat、gallery、image、link、quote、status、video、audio 这几种文章样式。
// 添加文章样式 add_theme_support( 'post-formats' , array ( 'aside' , 'chat' , 'gallery' , |
做完这部后在写文章的时候会出现一个 Format 选项,根据自己的文章风格来选就行了,如果是微博体的话,就选 status 好了。
保存之后,在后台的文章页面也可以直观地看到文章样式。
但是不要忘记最重要的一步,我们需要在文章主循环里增加文章样式的判断,否则显示出来的文章都一个样式,文章格式就白设了。代码就像下面这样子,自己喜欢什么样式就改成什么样式就行了,本文做的只是简单的举例。
<?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <DIV id= "post-<?php the_ID(); ?>" ? post_class(); <?php>> <?php if ( has_post_format( 'aside' )) { echo the_content(); } elseif ( has_post_format( 'chat' )) { echo ' <h3>'; echo the_title(); echo '</h3> '; echo the_content(); } elseif ( has_post_format( 'gallery' )) { echo ' <h3>'; echo the_title(); echo '</h3> '; echo the_content(); } elseif ( has_post_format( 'image' )) { echo ' <h3>'; echo the_title(); echo '</h3> '; echo the_post_thumbnail( 'medium' ); echo the_content(); } elseif ( has_post_format( 'link' )) { echo ' <h3>'; echo the_title(); echo '</h3> '; echo the_content(); } elseif ( has_post_format( 'quote' )) { echo the_content(); } elseif ( has_post_format( 'status' )) { echo the_content(); } elseif ( has_post_format( 'video' )) { echo ' <h3>'; echo the_title(); echo '</h3> '; echo the_content(); } elseif ( has_post_format( 'audio' )) { echo ' <h3>'; echo the_title(); echo '</h3> '; echo the_content(); } else { echo ' <h3>'; echo the_title(); echo '</h3> '; echo the_content(); } ?> </DIV> <?php endwhile ; else : endif ; ?> |
OK!大功告成。
原文地址:http://codecto.com/2010/11/wordpress-post-formats/
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 如何设计出一个有灵魂的「签到功能」? 2021-05-04
- 案例·电商 | 网易严选是如何用会员权益提升消费频次? 2021-05-04
- 什么是百度智能小程序单卡?如何获取智能小程序单卡 2020-03-16
- 难得一见的To B干货 | SaaS运营该如何开展? 2019-12-27
- 如何搭建流失用户召回体系? 2019-12-27
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash