Facebook posts on wordpress blog
Perhaps this plugin would do the trick? https://wordpress.org/plugins/recent-facebook-posts/ Demo: http://wpdemo.dannyvankooten.com/?page_id=18
Perhaps this plugin would do the trick? https://wordpress.org/plugins/recent-facebook-posts/ Demo: http://wpdemo.dannyvankooten.com/?page_id=18
Got it. I was already using the Advanced Custom Fields plugin so I just created a custom field called “old_url” with that. Then I created a function: function sharingurl () { if(get_field(‘old_url’) == “”) { echo untrailingslashit(get_permalink()); } else { echo get_field(‘old_url’); } } Then I just included <?php sharingurl(); ?> in the data-href and … Read more
How not to show author’s name when sharing blogposts on Facebook?
How can i call the facebook #hashtag images on my site
Please paste here all your code about this function. And next take a look at this tutorial: http://smallbusiness.chron.com/display-facebook-feed-wordpress-31436.html Best regards!
Send and Embed Vine (in WP Post) on Facebook
From what I understand, you need help framing your if logic? And the php tags usage dont look right either. Does this help – <?php if(!is_single()){ if(is_home() || is_front_page()){ // not sure if you have set a static page as your front page echo ‘<meta property=”og:url” content=”‘.bloginfo(‘url’); .'” />’; }elseif(is_tag()){ echo ‘<meta property=”og:url” content=”‘.$_SERVER[“HTTP_HOST”] . … Read more
Access wordpress pages using a self signed shared ssl
You will need to include both pieces of code in the text widget like this. BTW, When you pasted your code, you missed a > in </script>. I fixed it in my edit and answer <div id=”fb-root”></div> <script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; … Read more
The rel canonical link points to http://www.teamrealty.ca/listing-details/, which returns a 500 internal server error response code. You can try to remove the canonical action before wp_head() is called on those pages: remove_action( ‘wp_head’, ‘rel_canonical’ );