Ok, I’ve been able to add my own content, however my code (below) only calls the post data from the current post for my custom meta keys (beds, baths, sq ft, and price). I tried adding my meta keys to the $ids (line 42 of both end-nojax.inc.php) $ids = get_post_meta( $post_id, '_yyarpp', 'locality_property_bedrooms', 'locality_property_bathrooms', 'locality_property_size', 'locality_property_price', true );
but no such luck. How do I go about calling my custom meta keys content from the manual chosen posts? Please, if anyone has run into this or has any insight I would truly appreciate some help! Thank you.
'<div class="home-property-item">
<div class="property-detail-block">
<div class="property-pic-wrapper">
<a href="' . esc_url( apply_filters( 'the_permalink', get_permalink( $id ) ) ) . '">' . $thumb . '</a>
</div>
<h4><a href="' . esc_url( apply_filters( 'the_permalink', get_permalink( $id ) ) ) . '">' . apply_filters( 'the_title', get_the_title( $id ) ) . '</a></h4>
<div class="features-wrapper">
<span class="bed"><div class="value">' . apply_filters( 'get_post_meta', get_post_meta($post->ID, 'locality_property_bedrooms', true) ) . '</div>Beds</span>
<span class="bath"><div class="value">' . apply_filters( 'get_post_meta', get_post_meta($post->ID, 'locality_property_bathrooms', true) ) . '</div>Baths</span>
<span class="size"><div class="value">' . apply_filters( 'get_post_meta', get_post_meta($post->ID, 'locality_property_size', true) ) . '</div>Sq. Ft.</span>
<div class="price-box">
<h5 class="price">$' . apply_filters( 'get_post_meta', get_post_meta($post->ID, 'locality_property_price', true) ) . '</h5>
</div>
</div>
<div class="learnmore">
<a href="' . esc_url( apply_filters( 'the_permalink', get_permalink( $id ) ) ) . '" class="blue">LEARN MORE</a>
</div>
</div>
</div>';