ordPressのショートコードで呼び出した記事一覧がどうしても先頭に表示されてしまう現象が発生しました。
現状の問題のあるコード
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
function shortcode_show_hoge_list() { $args = array( 'post_type' => 'hoge_type', //タイプ 'posts_per_page' => '5', //5件 'orderby' => array('menu_order' => 'DESC', 'date' => 'DESC'), ); query_posts($args); if (have_posts()) { while (have_posts()) { the_post(); // 名前 if (get_field('name')) { $voice_name = get_field('name'); } else { $voice_name = '匿名'; } $result_code .= ' ' . $voice_name . 'さん echo $result_code; } } } add_shortcode('show_hoge_list', 'shortcode_show_hoge_list'); |
これのechoだったからいけなかったようです。最後にまとめてreturnでcodeを返す必要がありました。
修正後
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
function shortcode_show_hoge_list() { $args = array( 'post_type' => 'hoge_type', //タイプ 'posts_per_page' => '5', //5件 'orderby' => array('menu_order' => 'DESC', 'date' => 'DESC'), ); query_posts($args); if (have_posts()) { $result_code = null; while (have_posts()) { the_post(); // 名前 if (get_field('name')) { $voice_name = get_field('name'); } else { $voice_name = '匿名'; } $result_code .= ' ' . $voice_name . 'さん } } return $result_code; } add_shortcode('show_hoge_list', 'shortcode_show_hoge_list'); |