通过PHP代码小部件在侧边栏中列出即将发生的事件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过PHP代码小部件在侧边栏中列出即将发生的事件相关的知识,希望对你有一定的参考价值。
Gets the date, pulls a list of upcoming events (posts from cat 6) and sorts by custom field \"event_date\" . Add to sidebar via [php Code Widget](http://wordpress.org/extend/plugins/php-code-widget/).
<?php query_posts('cat=6&showposts=5&meta_key=event_date&meta_compare=>=&meta_value='.$today.'&orderby=meta_value&order=ASC'); ?> <?php if ( have_posts() ) : ?> <ul> <?php while ( have_posts() ) : the_post(); ?> <li class="cat-post-item"><a class="post-title" title="Permalink to <?php the_title() ?>" rel="bookmark" href="<?php the_permalink() ?>"><?php the_title() ?></a></li> <?php endwhile; ?> </ul> <?php endif; wp_reset_query(); ?>
以上是关于通过PHP代码小部件在侧边栏中列出即将发生的事件的主要内容,如果未能解决你的问题,请参考以下文章
PHP 通过PHP Code Widget列出补充工具栏中即将发生的事件
Wordpress:如何仅将 widget_title 过滤器应用于某个侧边栏中的小部件?
php 在主题激活期间,WordPress将小部件添加到侧边栏。