-1
私はWordPressの開発者で、先進的なカスタムフィールドを使って最初のカスタムテンプレートページを作成してループを管理しました。WP_Queryループのショートコードを作成するには?
<?php
$args = array(
'post_type' => 'art',
'orderby' => 'title',
'order' => 'ASC'
);
$the_query = new WP_Query($args);
?>
<?php if (have_posts()) : while ($the_query->have_posts()) : $the_query->the_post(); ?>
<?php get_template_part('content', 'art'); ?>
<?php endwhile; endif; ?>
しかし、私はそれをテンプレートページ内だけでなく、どこでも好きな場所で使用したいと考えています。したがって、私はショートコードを作成する必要があります。
例:
function foobar_func($atts){
return "foo and bar";
}
add_shortcode('foobar', 'foobar_func');
私の質問は次のようになります。どのように私は私のショートの内側にループを置くことができますか?
おかげ残念ながら、それは働いていません。 = / –