[Plugin: Custom Post Type UI] Add Post excerpt to my WP_query
-
Below is code to displat custom post types with custom fields how can i add the post excerpt to it – Thanks
‘
<?php $loop = new WP_Query( array( ‘post_type’ => ‘movies’,’actors’ => ‘peter-smith’, ‘actress’ => ‘jane-smith’, ‘posts_per_page’ => 10 ) ); ?><?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
<?php the_title( ‘<h2 class=”entry-title”>‘, ‘</h2>’ ); ?>
<h5>image</h5>“><img src=”<?php the_field(‘image’); ?>” alt=”text-here” />
<?php endwhile; ?>
‘https://www.ads-software.com/extend/plugins/custom-post-type-ui/
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘[Plugin: Custom Post Type UI] Add Post excerpt to my WP_query’ is closed to new replies.