Home › Forums › General Issues › Upload PDF Manuals on all product pages and display all the uploaded value › Reply To: Upload PDF Manuals on all product pages and display all the uploaded value
@jarvis It work well, here is the modified code below…
<?php
$args = array(
'posts_per_page' => -1,
'post_type' => 'product',
'orderby' => 'date',
'order' => 'DESC',
'paged' => $paged,
'fields' => 'ids'
);
$wp_query = new WP_Query($args);
if ($wp_query->have_posts()) :
while ($wp_query->have_posts()) : $wp_query->the_post();
$pdf_upload = get_field('pdf_upload');
if( $pdf_upload ): ?>
<li> <a href="<?php echo $pdf_upload['url']; ?>"><? echo $product->post->post_title; ?></a></li>
<?php echo '<span class="date_published">Published on: ' . get_the_date('Y', $product->get_id()) . '</span>'; ?>
<?php endif;
endwhile;
endif;
?>
@hube2 The page is indeed pretty slow, I will work on the Ajax now, I will keep this thread updated with the code.
Thanks
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.