How to write ‘post to facebook’ action in Uncanny Automator
How to write ‘post to facebook’ action in Uncanny Automator
How to write ‘post to facebook’ action in Uncanny Automator
Bigger images when sharing a link with facebook
It’s a localization problem, Facebook is loading a who-know-where javascript sdk to embed the video. Switch to code view inside your wordpress editor and search for the js include url, similar to https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.5 this, and change whatever string appears instead of en_US with en_US. Where the string is located depends on how you are doing … Read more
The code you used should work. BTW to me, as the code is not working, the best approach would be to unset the og:url from Jetpack and do it on your own? I’m taking your code and adding mine and editing where necessary: <?php /** * Change HTTPS to HTTP * @param string $url Default … Read more
I found the solution! global $current_user; get_currentuserinfo(); echo get_avatar( $current_user->ID, 48 );
They are the same resource. The actual URL is http://example.com/?{post_type}={post_slug} The rewrite URL (via permalink settings/.htaccess) is http://example.com/{post_type}/{post_slug}/
You, and those plugins, should be using the HTTP API to make connections. That API will attempt to make a connection in several different ways. If your site is capable of making HTTP requests that API should be able to do it. That is largely the point of the API: The problem is that web … Read more
As Robert hue said, you’ll have to use a plugin for this. There are plenty in the Plugin directory, but you could also write your own plugin (or add the code to your theme’s functions.php file) if you can’t find a suitable one or need more functionality. You’ll want to hook into the publish_post action. … Read more
You have to add the meta og:video tags into your header for it to recognize them. Simple Facebook Connect does this automagically for YouTube content: http://wordpress.org/extend/plugins/simple-facebook-connect/ More info on OpenGraph tags here: http://developers.facebook.com/docs/opengraph/
You have to setup fb application and config plugin with your app key. Here http://wordpress.org/extend/plugins/facebook-comments-for-wordpress/installation/ is info how. Here is screenshot: paste key in first input box as in picture. And just a friendly advice, use built in WordPress comments, believe me they work so much better. Fb comments – been there, done that, it … Read more