Plugins
How to: Creating an Archive page
Many weblog sites these days have some form of an archive page. In WordPress it might be the built in auto generation of permalinks by: /Month/
and /date/
.
But in some blog’s, for instance this one here (as I said in a previous post) you can’t get the post to paginate or link to http://youblog.com/page/2
if you have nice permalinks active or http://youblog.com/?paged=2
.
By any means, In this theme I have to have an archive link at the bottom. So..
Archive WordPress Plugins
There are many plugins which allows you to automatically create an archive page. The good thing is that you’ll (almost) have nothing to do, and the bad thing is that you may not be able to customize your archives much.
On this blog I have decided to use Clean Archives Reloaded by Viper007Bond. Which you can now see active in my Archive’s page.
If you want to use a plugin, here is a small list:
And of coarse you can always..
..do it your self!
First you would have to create a template file by writing this:
<?php /* Template Name: Archive page */ //please add you necessary code here //ie. your hooks and html code ?> <ol id="archive"> <?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts(array( 'showposts' => 100, 'offset' => 10, 'order' =>'DES', 'paged' => $paged, )); $wp_query->is_archive = true; $wp_query->is_home = false; if( have_posts() ) : while( have_posts() ) : the_post(); ?> <li><a href="<?php the_permalink() ?>"><?php $tit = the_title('','',FALSE); echo substr($tit, 0, 25); ?>...</a> - Posted on <?php the_time('j F Y') ?> - Comments (<?php echo $post->comment_count ?>)</li> <?php endwhile; endif; ?> </ol> ?>
You may notice this code:
<?php $tit = the_title('','',FALSE); echo substr($tit, 0, 25); ?>
from a previous post!
Once saved and pasted it to your archives.php
or template-archives.php
file, upload it on your wp-content/themes/yourtheme/
directory.
Then, in WordPress dashboard, create a new page, name it “Archives” (or whatever you want) and select Archive page as your page template.
enjoy!
Plugins
Comment Validation
Another plugin I am using on this site: Comment Validation by Jörn Zaefferer.
From Jörn’s site:
Why should you install it? Because you care for comments and want to help users reduce mistakes that hold them off from commenting at all.
Whats the technology used? jQuery and the jQuery Validation plugin with a few customizations to make it fit into the standard WordPress theme.
Is it compatible with other plugins? The plugin is tested with the Draw Comments plugin and works, though the performance is slightly degraded. Other plugins haven’t yet been tested.
Download WordPress-Comment-Validation-Plugin (zip)
And.. Test it out below, but then, do leave a true comment. 🙂
Plugins
Woopra Analytics
Woopra is the world’s most comprehensive, information rich, easy to use, real-time Web tracking and analysis application.
Features include:
- Live Tracking and Web Statistics
- A rich user interface and client monitoring application
- Real-time Analytics
- Manage Multiple Blogs and Websites
- Deep analytic and search capabilities
- Click-to-chat
- Visitor and member tagging
- Real-time notifications
- Easy Installation and Update Notification
I can’t say enough about this plugin! It beats the little pants off any other applet or javascript. Make sure you get your api key from Woopra then download the Woopra Plugin from WordPress and that’s it! You can even download a java application to your desktop and view the stats from your screen!
Plugins
WP-Membership

WordPress has emerged as not only a leading blogging platform but also a content management system for many Web publishers. Now there is a simple plugin available that will turn your blog into a paid membership site.
The WP-Membership plugin allows publishers to collect membership fees for WordPress blogs via PayPal, Authorize.net, and YourPay, with additional payment gateways in development. Membership fees can be collected via recurring payments, with multiple subscirption levels, various subscription lengths and pricing options. Free and paid trial options are also available, as are page-by-page options so that certain content can be free while other, “premium” content can be fee-based.
WP-Membership is available for $35
Features
- Responsive & Ajax
- Translatable
- 11 language files can be found in language directory inside the plugin. Files: Russian, German, Japanese, Spanish, French, Chinese, Portuguese, Italian, Turkish, Dutch, Swedish
- Payment Gateway
- a) Paypal [Express Checkout]
- b) Stripe [ Full synchronize with Stripe Plan ]
- c) Woocommerce Payment
- Mailchimp to store Email for new registrants
- Membership Type
- a) Free Account
- b) One time Payment
- c) Recurring Payment
- d) Free Trial
- e) Paid Trial
- e) Variable Payment Package
- 7 Pricing Tables
- 2 Signup styles
- My account
- User Setting
- User Social Profile
- User privacy setting
- User Change Password
- User All Post
- User Post: Custom Fields
- User Insert Post
- User Edit Post
- Subscription upgrade
- Subscription downgrade
- Subscription Cancel
- Coupon
- User Role creation by Package
- Overriding templates
- Page Redirect
- User Public Profile Page Redirect
- User My Account Page Redirect
- User Registration Page Redirect
- Page Setting
- Email Templates
- User Welcome Email template
- User Forget Password Email template
- User Order Email template
- Admin Order Email template
- 5 User Public Profile
- Payment History
- Report
- 3D Pic charts
- Line Chart
- User Public Profile Page Redirect:
- Hide Admin Bar
- And Lots of other settings..
- 2 type of User Directories
- Content Protection Setting
- WP User Setting Module for Admin
- Subscription Reminder Email Module
-
Tips & Tricks4 months ago
WordPress Security Hacks
-
Pages6 months ago
Write For Us – Guest Post
-
Showcase7 months ago
StylizedWeb.com
-
News6 months ago
How to: Show/Hide any div box with jQuery in WordPress
-
Tips & Tricks5 months ago
Remove the title attribute using jQuery
-
Tips & Tricks3 months ago
How to: show/hide a widget in WordPress with jQuery
-
Plugins3 months ago
Top Membership plugins
-
Tips & Tricks7 months ago
Limit the characters that display on the_title
You must be logged in to post a comment.