Timed post and tweet?

WordPress doesn’t have “tweeting” functionality built in. However, post scheduling is built in. You just set the time when you want the post to publish on the edit post screen. If you use a twitter plugin like my own Simple Twitter Connect, and you schedule a post, then it will send the tweet at the … Read more

How to install Facebook, Google+, & Twitter LIKE buttons for each individual post at frontpage?

You have two options: The easy way is to install an extension that puts these buttons on your posts. You can search wordpress.com’s plug-ins database, here is an example, but there are many more: http://wordpress.org/extend/plugins/really-simple-facebook-twitter-share-buttons/ You can also search for these from within your WordPress admin interface to install these with one click. The more … Read more

Facebook and Twitter share buttons not working [closed]

There is a jQuery event hooked to that link. Here is the function that is called whenever you click one of the sharing links: function (){ window.open( jQuery(this).attr( ‘href’ ), ‘wpcomtwitter’, ‘menubar=1,resizable=1,width=600,height=350’ ); return false; } This is added by the JetPack plugin and will attempt to open a dialog window with the url http://karba.la/?share=twitter&nb=1 … Read more