web-dev-qa-db-ja.com

ショートコードからエコーを削除

私はショートコードで遊び始めたばかりで、phpの知識がないためにphp echoを使わずにこのショートコードを機能させる方法を理解することができません。

誰かが私のコードを修正する手助けをすることができますか?

// SPONSORS Shorcode

function sponsors_shortcode($atts) {

extract(shortcode_atts(array(
    "name" => "sponsors",
), $atts));

$args = array(
    "post_type" => "sponsors",
    "name" => $name,
);
$query = new WP_Query($args);

if($query->have_posts()) : while($query->have_posts()) : $query->the_post();

if(get_field('group')) {

    echo "<ul class='sponsors'><h2>" , the_title() , "</h2>";

    while(has_sub_field('group')) {

        $attachment_id = get_sub_field('image'); 
        $size = 'sponsorimage'; 
        $image = wp_get_attachment_image_src( $attachment_id, $size , false );

        $link = get_sub_field('link');

        echo "<li>";
            echo "<a href='" , $link , "' target='_blank'>";
                echo "<img src='" , $image[0] , "' />";
            echo "</a>";
        echo "</li>";
    }
    echo "</ul>";
}


endwhile; endif; wp_reset_query();

}

add_shortcode("sponsors", "sponsors_shortcode");
1
ngearing

'echo'ステートメントはショートコード機能では機能しません。 shortcode関数は単に変数を返しています。だからあなたのコードはこのようになります:

if(get_field('group')) {
    $html = '';
    $html.= "<ul class='sponsors'><h2>" , get_the_title() , "</h2>";

    while(has_sub_field('group')) {

        $attachment_id = get_sub_field('image'); 
        $size = 'sponsorimage'; 
        $image = wp_get_attachment_image_src( $attachment_id, $size , false );

        $link = get_sub_field('link');

        $html.= "<li>";
        $html.= "<a href='" , $link , "' target='_blank'>";
        $html.= "<img src='" , $image[0] , "' />";
        $html.= "</a>";
        $html.= "</li>";
    }
    $html.= "</ul>";
}
endwhile; endif; wp_reset_query();

return $html;
0