任何人都可以解釋爲什麼這隻返回第一個結果。我想返回所有與當前網址具有相同自定義字段值的結果。它會返回1.它是否需要一個或每件東西?謝謝!!WordPress的短代碼功能
<?php add_shortcode('feed', 'display_custom_post_type');
function display_custom_post_type(){
$url = 'http://' . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
$args = array(
'post_type' => 'custom_post_type',
'posts_per_page' => -1
);
$new_query = new WP_Query($args);
while($new_query->have_posts()) : $new_query->the_post();
return get_title();
endwhile;
};?>
爲了簡單起見,我已經從示例中刪除了元查詢。包含或不包含元查詢的同樣的問題也是有說服力的。謝謝! – dmt