Домой Wp-Recall WP-Recall: Проблемы и решения Внесение созданных произвольных полей в запись.
3ответ(ов) в теме
oleg222
не в сети 9 лет
На сайте с 29.01.2016
Участник
1
18:44

Не выводятся созданные произвольные поля в записи.Вот код в single.php
Правильно все введено?

<div id="primary" class="content-area">
		<main id="main" class="site-main" role="main">

		<?php
		while ( have_posts() ) : the_post();

			get_template_part( 'template-parts/content', get_post_format() );
			
			rcl_get_custom_post_meta($post_id);

			the_post_navigation();

			// If comments are open or we have at least one comment, load up the comment template.
			if ( comments_open() || get_comments_number() ) :
				comments_template();
			endif;

		endwhile; // End of the loop.
		?>

		</main><!-- #main -->
		<?php get_post_meta($post_id,'fail',1); ?>
	</div><!-- #primary -->

0
Вова (Otshelnik-Fm)
не в сети 1 неделя
На сайте с 27.01.2013
Участник
Тем 43
Сообщения 18653
2
18:54

Пробуйте заменить на

echo rcl_get_custom_post_meta($post->ID);

1
oleg222
не в сети 9 лет
На сайте с 29.01.2016
Участник
3
18:58

Большое спасибо! 😀

1
Тема закрыта. Публикация новых сообщений запрещена.