我有一个我在我的网站上显示的自定义帖子类型列表。除了这些帖子类型,我在我的 WordPress 中添加了一个插件,它允许我为每个帖子类型添加一个竖起大拇指的评分系统,所以它看起来像这样:
的代码如下所示:
<?php
/* The custom post types query */
$query = new WP_Query( array(
"post_type" => "motto",
"order" => "ASC",
));
while($query -> have_posts()) : $query -> the_post();
?>
/* Container with the ratings from the plugin + each post type */
<div id="motto-container">
<?=function_exists('thumbs_rating_getlink') ? thumbs_rating_getlink() : ''?>
<h3 class="abimottos">
<?php echo get_post_meta($post->ID, 'motto_titel', true); ?>
</h3>
</div>
我有这些自定义帖子 + 他们的评分的列表,当然每个帖子都有一个单独的评分,我想在这些评分的值之后订购我的自定义帖子类型。我怎么能存档呢?
我知道评分的 meta_key 是 _thumbs_rating_up(因为我已经使用 ARI Adminer 插件修改了该值),我可以以某种方式使用此 meta_key 在评分的 meta_value 之后订购自定义帖子类型吗?
我对 PHP 和数据库很陌生。