我正在尝试在event manager的事件中导航
下一个/上一个帖子链接有效,但它们是按创建日期而不是按事件日期排序的。
怎么可能改变这一点?
我正在尝试在event manager的事件中导航
下一个/上一个帖子链接有效,但它们是按创建日期而不是按事件日期排序的。
怎么可能改变这一点?
WordPress最终用于此的功能是get_adjacent_post(), 它具有允许您直接修改查询的筛选器。您必须修改JOIN
, WHERE
和ORDER BY
子句连接post元表并按自定义字段排序。
另一种选择是Ambrosite Next/Previous Post Link Plus 插件。
这为每个帖子提供了相同的视图值,我如何为每个帖子获取下一个var?<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <a href=\"<?php the_permalink(); ?>\"><?php the_title(); ?> <?php // set the meta_key to the appr