カスタム投稿タイプ ページを取得しました。これは私が使用するコードです。
<?php
get_header();
get_sidebar();
the_meta();
?>
<ul class="event">
<?php $args = array( 'post_type' => 'event-netzwerk', 'posts_per_page' => 30, 'orderby' => 'rand' );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
echo '<li>';
the_title('<h3>', '</h3>');
the_content();
echo '</li>';
endwhile; ?>
</ul>
<?php
get_footer();
?>
そこにAFCを追加する方法を知っている人はいますか?