Tag subscription option in wordpress. How?

If you’re willing to use an outside provider, you can add the tag feed to Feedburner. First get the tag feed: http://www.example.com/?tag=tagname&feed=rss2 Then to to feedburner.com and create a feed, then enable “Email Subscriptions” (under the “Publicize” tab). I’ve done this, and it works well.

Follow-up Comments Notification Without a Plug-in

It’s quite simple, just hook a function on comment_post in which you check if the comment is a reply and send the author of the parent comment an email: add_action(‘comment_post’, ‘notify_author_of_reply’, 10, 2); function notify_author_of_reply($comment_id, $approved){ if($approved){ $comment = get_comment($comment_id); if($comment->comment_parent){ $parent_comment = get_comment($comment->comment_parent); wp_mail($parent_comment->comment_author_email, ‘Hello’, ‘Dude you got a reply…’); } } } For … Read more

Simple plugins to post info about new blog entries?

For Facebook: http://wordpress.org/extend/plugins/simple-facebook-connect/ For Twitter: http://wordpress.org/extend/plugins/simple-twitter-connect/ For Google+ http://wordpress.org/extend/plugins/simple-google-connect/ The twitter and facebook plugins will autopost from your site to each service. The G+ plugin is new, and still under development. I don’t know that there is any plugin yet that pushes notifications to G+….

Add notification bubble notice in navigation using transients

Thanks again for the help @jdm2112. Updated a few syntax errors and used the same structure you suggested, works great! // Add notification bubble to custom post type menu nav add_action( ‘admin_menu’, ‘add_cpt_menu_bubble’ ); function add_cpt_menu_bubble() { global $menu; $count_posts = tms_count_pending_posts(); if ( $count_posts > 3 ) { foreach ( $menu as $key => … Read more

Notification to Admin or Author upon new post [duplicate]

You need to write your hook for transition_post_status action: function authorNotification( $new_status, $old_status, $post ) { if ( $new_status == ‘publish’ && $old_status != ‘publish’ ) { $author = get_userdata($post->post_author); $message = ” Hi “.$author->display_name.”, New post, “.$post->post_title.” has just been published at “.get_permalink( $post->ID ).”. “; wp_mail($author->user_email, “New Post Published”, $message); } } add_action(‘transition_post_status’, … Read more

Why is WordPress asking me to update my new (virtually blank) theme?

In addition to having the same name, I think it checks the folder name first for updates. You should also change your folder name if you are planning to distribute publicly, or if this is private, you can exclude it from update checks: http://markjaquith.wordpress.com/2009/12/14/excluding-your-plugin-or-theme-from-update-checks/. It would still probably be better to make the names in … Read more

admin_notices not displaying in plugin

Try this. I cleaned up your arg array and placed everything in a function. Also, why are you using the getInstance method when your efpd_admin_notice is public? See the code below for accessing this method properly. function plugin_update(){ $plugin_update = Efpdd::efpd_admin_notice(array( ‘type’ => ‘update’, ‘message’ => ‘The plugin has just been updated.’, ‘button’ => ‘Click … Read more

Best way to notify WordPress plugin users of new release candidates for beta testing?

After no answers for a long-term solution, I have developed a solution called the WP247 Extension Notification System. It is comprised of two plugins that are in the WordPress plugin directory: A “Server” plugin called WP247 Extension Notification Server that runs on the extension developer’s website to compose and distribute notices. A “Client” plugin called … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)