
最近在使用Google丰富网页摘要测试工具的时候,发现对于默认Wordpress博客,总会有三条错误信息出现,今天我就介绍一下,如何通过修改Wordpress模版文件来修复这些错误信息的方法。
错误信息内容分别是:
Warning: Missing required field “entry-title”.
Warning: Missing required field “updated”.
Warning: Missing required hCard “author”.
对于entry-title的错误信息修改方法是:
打开single.php文件,找到类似<h1><?php the_title(); ?></h1>一行,将其修改为<h......

1. Featured Content Gallery Plugin v2.0 (FCS)
Featured Content Gallery creates an automated, fully customizable rotating image gallery anywhere within your WordPress site. Choose your images and display categories, pages or posts with custom overlay text and a thumbnail carousel. Custom options include gallery size, color, style and more.
Download: Featured Content Gallery V 2.0
Plugin Homepage: Featured Content Gallery V 2.0
2. Featured Category Slideshow / FCS
This plugin is also based ......
作者: owoer
|
发表于:2012年10月5日
|
栏目:WordPress插件
|
15 wordpress slide show plugins for featured articles on home page已关闭评论
阅读全文

调用 WordPress 置顶文章列表:
在需要调用 WordPress 置顶文章的地方直接添加以下代码即可:
<ul>
<?php
$sticky = get_option('sticky_posts');
rsort( $sticky );
$sticky = array_slice( $sticky, 0, 5);
query_posts( array( 'post__in' => $sticky, 'caller_get_posts' => 1 ) );
if (have_posts()) :
while (have_posts()) : the_post();
?>
<li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" rel="bookmark&quo......

如果你想让你的WordPress站点有CMS的风格,首页幻灯片肯定是必须的。实现WordPress首页幻灯片的插件有很多,比如D13Slideshow就很好用。但幻灯片往往是嵌入到主题中的,因此非插件可能会比较合适。
这篇文章介绍的方法是将Orbit幻灯片插件整合到WordPress主题中,Orbit是一款基于jquery的轻巧型幻灯片展示工具。本次介绍的方法仅仅是幻灯片,并不能实现自动从WordPress中获取图片,想要添加或修改这个幻灯片的内容,你只能手动修改代码。
这个幻灯片的效果预览请到Orbit官网:http://www.zurb.com/playground/jquery_image_slider_p......

多人开始使用wordpress来搭建CMS风格的站点,而一个CMS站点,推荐文章区域通常是必不可少的,且大多都添加一些幻灯片特效。本文里面,帕兰映像为你推荐5款WordPress推荐文章幻灯片插件。
如果你正维护一个基于WordPress的CMS站点,可以尝试使用这些幻灯片插件来美化你的博客布局。
1. D13slideshow
D13design提供的一个wordpress插件,以javascript幻灯片动画的形式展示推荐内容。包含图片,标题和摘要。可选输出5篇或10篇,后台选择要输出哪些文章。幻灯片样式可设为循环播放,只播放一次或手动导航,以及其它一些方便的设置。
2.......