Как я могу создать пользовательские поля в пользовательском типе сообщения?

Я получил страницу с пользовательским типом записи, вот код, который я использую:

<?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();
?>

Кто-нибудь знает, как я могу добавить там АФК?

-1

Решение

Для отображения ACF в вашей теме используйте the_field()

<h1><?php the_field('custom_title'); ?></h1>
1

Другие решения

Вы можете использовать функцию the_field.

the_field("your_custom_field");

https://wordpress.org/plugins/advanced-custom-fields/screenshots/

1