내 사이트에 표시 할 맞춤 게시 유형 목록이 있습니다.다른 플러그인의 meta_value로 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와 데이터베이스가 처음입니다.
https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters – CBroe