因此,我使用的主题是使用发布日期机制来提取帖子及其内容。事情是我想使用日期因子并排序帖子,但是因为它使用发布日期而不是修改日期,所以它对我不起作用。当前代码
if( !function_exists('wpestate_my_order') ):
function wpestate_my_order($orderby) {
global $pdb;
global $table_prefix;
$orderby = $table_prefix.'postmeta.meta_value DESC,
'.$table_prefix.'posts.ID DESC';
return $orderby;
}
endif; // end wpestate_my_order
现在无论如何我都可以更改上面的代码,以便它将被修改后的数据提取?
谢谢您的帮助!