Home › Forums › General Issues › Saving post content into product meta field › Reply To: Saving post content into product meta field
update*
it still doesn’t work thou
<?php
$scat = get_the_term_list( $id_product,”scat”); // I add this ‘scat’ through the product page in Admin Panel by using Custom Taxonomy. It will be the ID of the wordpress category */
// query
$query = new WP_Query( array( ‘cat’ => $scat ) );
?>
<?php if( $the_query->have_posts() ): ?>
<?php while( $the_query->have_posts() ) : $the_query->the_post(); ?>
$content = apply_filters(‘the_content’, $post->post_content);
<?php add_post_meta($post_id, ‘chapter’, $content); ?>
<?php endwhile; ?>
<?php endif; ?>
<?php wp_reset_query(); ?>
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.