Support

Account

Home Forums Pre-purchase Questions ACF in another Plugin Reply To: ACF in another Plugin

  • Hi @marty84

    Your screenshots doesn’t really help me much 🙂

    I guess you can try using WP core functionality instead. If it still does not work it’s not an issue with ACF but rather with the plugin you use for recent posts.

    
    <?php
    global $post;
    $postExcerptHTML .= '</div><div class="subhome">' . get_post_meta($post->ID, 'sub_title', true) . '</div><div class="srp_fb"><div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#appId=MyID&xfbml=1"></script><fb:like href="' . get_permalink($post->ID) . '" send="false" layout="button_count" width="550" show_faces="false" font=""></fb:like></div>';
    	
    ?>