Get post count for the user by their post type in wordpress and bbpress 2.0
We use count_user_posts function to get count of the total post for the user whose ID is passed to this function. We can use this function as: <?php count_user_posts( $userid ); ?>You can find...
View ArticleHow to display all Categories in Multiple Columns in your WordPress site
Some time ago I want to display all categories (all the parent and child) of my site in the footer in the multiple columns. All the codes on the net were useless for me because some code display...
View ArticleHow to display code in your wordpress site
If you have several wordpress post that contain some programming code such as in C#, vb.net, java etc. It should be better if you display code in different way from the other content. We can use the...
View ArticleWordfence plugin – Protect your wordpress site from Attacks and viruses
Today there is the big challenge to protect your WordPress site from the hackers. Unwanted attacks and viruses can hurt your site’s reputation. So i suggest you a WordPress plugin named Wordfence for...
View ArticleFree web hosting services – Google Blogger vs WordPress
WordPress and Google Blogger both are the mostly used free hosting services for blogging. WordPress is the popular due to its great themes support and on the other hand Google blogger is for easy to...
View ArticleList of 5 plugins installed in my all wordpress based sites
I am discussing with you the five key elements for any website: search engine optimization(seo), performance, security, flexibility and content. Fortunately you can get the mostly all things except...
View ArticleRun php code in the wordpress post using Allow PHP in Posts and Pages Plugin
WordPress is the most popular blog system. You can customize your blog as you want. In addition you can also execute PHP code in posts and pages using the ‘Allow PHP in Posts and Pages‘ Plugin. How to...
View ArticleShow the title for the Link and aside post type in twenty fourteen wordpress
In 2014 the WordPress release its new version with its default theme twenty fourteen.The Twenty fourteen theme supports various post types including the Aside and Link. The both Post format doesn’t...
View ArticlePrevent your email-address from the spam bots in WordPress
From the last several days I have lot of spam mails on the contact-us email address. After investigating, I have found several reasons: one of them is that I have place the email address on the contact...
View ArticleHow to display thumbnail and title of the posts by particular tag name in...
If you want to display the thumbnail with the title of the posts by specific tag name, you can use the following code snippet. $tagname = "place" query_posts( 'tag='.$tagname ) ?> <?php if (...
View Article