Is there a plugin that can replace WP comments with Facebook comments as used by TechCrunch? [closed]
This is the official Facebook plugin: http://wordpress.org/extend/plugins/facebook/ supported both by Facebook and Automattic. Give it a spin.
This is the official Facebook plugin: http://wordpress.org/extend/plugins/facebook/ supported both by Facebook and Automattic. Give it a spin.
but get the first image, how i get the “featured image” of each of post? Use get_the_post_thumbnail(). You simply need to pass it the ID of the post; e.g.: <?php global $post; $post_thumbnail = get_the_post_thumbnail( $post->ID ); ?>
Consider this snippet here to accomplish your task. If you add it to your functions.php file, the Open Graph tags will be populated automatically as part of the wp_head action.
For Fb Login/Registration, Read The Article link Given here
Well, I used the googles, and found this link https://davidwalsh.name/facebook-meta-tags which explains that you need to have a <meta property=”og:{tagName}” content=”{tagValue}”/> with the appropriate values to specify the image used when you share a link to FB. Lots of options in that meta command, and the article explains it quite well. Since you used various … Read more
If you define a meta tag with the og:image property, facebook will pick this up as the image associated with that url. https://developers.facebook.com/docs/opengraphprotocol/
The answer is… Use Javascript for redirect, and redirect in each if statement.
Solved: I entered the code outside of the ajax call, in function my_footer() {
I added “http://” in the Facebook URL (See the issue for more details).
If anyone else is interested, this is how I solved it: I created a custom feed as a page template. As RSS 2.0 doesn’t support images for each entry/item, I created an Atom feed instead; all that contains is the image and the text as I have it formatted in my question above. Then I … Read more