您好,欢迎光临! 推荐您使用Chrome浏览器访问本站。

15 wordpress slide show plugins for featured articles on home page

1,674 views
15 wordpress slide show plugins for featured articles on home page1. 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 ......

非插件调用 WordPress 置顶文章列表

933 views
非插件调用 WordPress 置顶文章列表调用 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首页幻灯片

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

5款WordPress推荐文章幻灯片插件

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

WordPress 缩略图 timthumb

889 views
WordPress 缩略图 timthumb很多童鞋应该都有用过 WordPress 的缩略图功能,暂且不说那些形形色色的缩略图插件,Wordpress 2.9 版本之后就新增自带了缩略图的功能,但是不知道你有没有和我同样的感觉,Wordpress 自带的缩略图还是有很大的局限性,比如说只能自动裁剪一个正方形的图片,而不能裁剪成长方形的;又比如说,只能接受站内或者说多媒体库里的图片,对站外图片就无从下手了;再比如说图片所在文件夹不是同一个,不方便管理。总之,Wordpress 自带的缩略图功能并没有我们想象的那样强大,这时候我们需要第三方文件 timthumb.php 项目来帮助我们。 现在......