// Add Shortcode [list_services]; add_shortcode('list_services', 'codex_list_services'); function codex_list_services() { ob_start(); wp_reset_postdata(); ?> <div class="row"> <?php $arg = array( 'post_type' => 'services', 'posts_per_page' => -1, ); $po = new WP_Query($arg); ?> <?php if ($po->have_posts()) : ?> <?php while ($po->have_posts()) : ?> <?php $po->the_post(); ?> <div class="col-md-4"> <div class="ser-body"> <div class="thumbnail-blog"> <?php echo get_the_post_thumbnail(get_the_ID(), 'full'); ?> </div> <div class="content"> <div class="service-img"><img src=" https://stage.projects-delivery.com/wp/strategicare_staffing_LLC/wp-content/uploads/2025/02/serviceicon.png"></div> <h3 class="title"><?php the_title(); ?></h3> </div> <div class="para"><?php the_excerpt(); ?></div> <div class="readmore"> <a href="<?php echo get_permalink() ?>">Read More</a> </div> </div> </div> <?php endwhile; ?> <?php endif; ?> </div> <?php wp_reset_postdata(); return '' . ob_get_clean(); }