Comment Follow-Up Notifier?
Subscribe to Double-Opt-In Comments
Subscribe to Double-Opt-In Comments
I’ve personally stayed away from any external or 3rd party system. Many times commenters are apprehensive about using “another” account or service, esp with recent privacy issues with Facebook, etc. Also, many add bloat and delay page load to run their own scripts, etc and can be harder to style to fit within an existing … Read more
It sounds like you want to use the ‘sticky’ functionality as a replacement for a tag or a category. Why not just put all the posts you want in a ‘tab’ category, then call your query for that category. You can use orderby in fancy ways (such as by post_meta($tab = get_posts(‘category=tab&orderby=date’);
Enter Fancybox – check out the examples below the images, specifally Inline – modal window. If this seems like the ticket, it’s a very straightforward process of including it in your theme and then either following the examples or skimming the API. Let us know how you get on, or if you need a little … Read more
This will get the first image listed in the “gallery” section of your post (not the visible gallery if there is one, but the one if you click on insert image) http://snipplr.com/view/12513/display-the-first-image-attachment-of-a-wordpress-post/
You can register multiple menus, and display one of them depending on the context. register_nav_menus( array( ‘primary’ => ‘Regular’, ‘blog’ => ‘Blog’, ) ); Then in your theme, you select the menu you want: wp_nav_menu( array( ‘theme_location’ => (is_page() ? ‘primary’ : ‘blog’), ‘menu_id’ => ‘nav’ ) );
There’s Tweet Blender, seems pretty flexible and full of options: Provides several Twitter widgets: show your own tweets, show tweets relevant to post’s tags, show tweets for Twitter lists, show tweets for hashtags Twitter Hash Tag Widget: A widget for displaying the most recent twitter status updates for a particular hash tag. Twitter Tracker: A … Read more
Hands Down best one i have use is Picasa Express x2 Use Picasa user to get albums ( username can be stored in settings ) Show albums cover and name for get images. Images from album with caption or filename for selection Select and insert single image or banch for gallery. Enhanced Private Picasa albums … Read more
I would recommend installing Piwik on your intranet using one of their plugins, though it will work just fine as a stand alone. http://piwik.org/ http://piwik.org/blog/2008/06/new-plugin-wordpress-piwik-integration/
When one creates a WordPress site by default, or via the Fantastico tool in cPanel, it may create a blog with the Latin1 charset in the MySQL database. This causes Chinese characters (and other Unicode characters) to be switched into one or more ? question mark symbols, instead. The fix is to connect to your … Read more