wordpress 的文章形式
aside标准
chat日志
gallery相册
link链接
image图像
quote引语
status状态
video
audio
是一一对齐的,首先他把文章分成了很多种类,然后根据种类去加载不同种类的模板,从而实现多样式效果,感觉耦合性更强,比dedecms 更加优秀,具体怎么加载的 首先来看看
[php]
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
[/php]
get_template_part 主要是获取子模板,get_post_format()主要是获取当前文章属于那种,然后加载相应的模板,所以他的模板文件就是content-aside.php,content-chat.php等。非常人性化的效果啊,如果以上...