Recent Posts

Showing posts with label wordpress. Show all posts
Showing posts with label wordpress. Show all posts

Top 10 Best Plugins For Wordpress for security 2016

Hello friends as we know that website security is very important for every website in these days especially wordpress because we have to handle the security of worpress.The increasing security threats are the major problems with the bloggers and the websites.So It is very better for you to keep your blog protected from any thread or hacker.So today I have came with article In which I am going to show you the top 10 plugins for wordpress for security.



Let start it below.

Top 10 Plugins For Wordpress For Security:

1. The AntiVirus:
Protect your webpage from malware and spyware that will scan the website for the viruses. It is easy to use plug-in and has got easy features with light bytes. It also lets you know when it finds virus in your website.

2. Bullet Proof Security Pro:
The bullet proof security offers security against all the viral software that are XSS, SQL Injection, Base64 and CSRF etc. This plugin also offers to show the website maintenance page while the  website is under construction. So you can have many protection features while using this plugin.
3. Ask Apache:
The plug-in gives you complete support to your website on WP, and save it from being attacked from the malware and viruses to occupy the website. It gets updated automatically and helps in stopping malfunctions to disorder the website. Moreover, it protects your Password from being hacked by hackers.
4. The Exploit Scanner:
As it says, it scans all the files and data present on the website. It also scans the comments and posts by the external users. It identifies the suspicious activity at once and lets you know about them.
5. Defensio:
It is the latest filtering plugin that filters all the files and features going on at the site. It posses features like elaborated statistics, RSS feeds etc.
6. The Limit Login Attempts:
This security plug-in refrains the external source to reach to the site after a number of attempts. It blocks that IP address who is involved with the attempting to login to your site. It seems like the most important plug-in for the safety of your LOGIN details.
7. Sucuri Security:
This security plugin checks your webpage or blog from every possible present virus. It checks all the spam, malware etc, to strike the website system. It doesn't allow any virus to come over your site.
8. The WordFence:
The WordFence protects the website from every corner and with great efficiency. It is the free security plug in that offers firewall, authentication, scanning, DNS security etc. It is indeed the best one of the WordPress. One of the best security plugins which can take overall responsibility of your WP website, I use it myself and it is recommended to you too.
9. Verelo Blog Monitoring:
This plugin gives you power to monitor your blog from bad attacks of viruses and other things. It gives attractive features along with SMS notification and email. It saves the blog from malware attacks.
10. Security Ninja Plug-in:
This plug in is making sure about taking actions while getting attacked by some spam or virus. It performs 30+ security tests for the blog or web page. It helps effectively in saving you from facing the hacking problem.
By keeping your WordPress blogs equipped with these plugins, you can surely avoid the hacking and malfunctioned activities. Millions of the people are ensuring their security this way.


I hope that after reading this article you can easily handle your wordpress blog security.If you like this article share it on social media to help other blogger brothers.
Let me know you if you have any problem regarding to this article.If you have any problem you can comment me in comment box.Thanks for reading this article.Stay tuned for more articles.
 

List of Best Websites to download blogger templates 2016

Template is the major thing of the blog.Every user want to find the best template for his/her blog.He want to the great templates for blog that fully seo optimized and do not require much coding.If you are a good programmer then its great you can easily customized your template But if you are not a good programmer the it is just a like a headache.If you do not have knowledge about the web designing tools then don't worry today we will solve this problem.I have found some great websites that have good templates that are optimized by default.These websites have template almost on every topic.So you can find your template easily but if may consume your some time.




Top 5 websites to download blogger templates:

These are the websites where you can get almost every template. 

1. bestbloggertemplates.net

 This website is managed by Paul Crow which is a well known blogger in the world.This site is providing the best templates for a few years.You can find template by name,color,slidebar etc.

2. btemplates.com

This is very great and old site which is providing 1000+ templates for free which optimized by default.You can find every template on this site without any difficulty.Their admin has also given complete guide to install template.

3. btemplates4u.com

Another great website for free blogger templates and it publishes new templates regularly. You can find any template according to your needs. This website can meet your needs if you want to find a professional looking free design for your blogger blog, it also offers you a number of free WordPress themes. Just open it and get 1000 of templates.

This site contain great and beautiful templates for you.The admin of this site is a great blogger template designer and all the templates in this site are designed by him.He also provide you help via e-mail or comments.Just try it once.


Just a great site for blogger templates.It provides you all the themes that you are searching for.This site is also providing the wordpress themes for free that fully optimized.Just jump to this site and get 1000 of free template for your blog.

Let me know if have any problem regarding to this article.Also share this article with your friends to help them.Thanks for reading this article.Stay tuned for more articles. 

How to create an HTML sitemap in wordpress 2016

Sitemap is the one of the thing that we need to submit to Search Engine.HTML sitemap makes it easier for users as well as Search Engine Bot to find content on your site.There are many plugins to create HTML sitemaps in WordPress. But I will suggest you to create your HTML Sitemap Manually, You can do it with a bit of php code, you can create an HTML sitemap in WordPress yourself and have more control over the output So that you will got more places in Search Engine Results.Let see below that how to create it:


How to create a HTML sitemap in wordpress:

Follow the given steps to create a sitemap:
1. First log in to your hosting account where you have installed your wordpress.
2. Open the File Manager and find function.php in your directory.
3. Open function.php  for editing.
4. Paste the below given code just after <?php tag.




function spp_html_sitemap() {
$spp_sitemap = '';
$published_posts = wp_count_posts('post');
$spp_sitemap .= '<h4 id="sitemap-posts-h4">Here is a list of of my '.$published_posts->publish.' published posts</h4>';
$args = array(
'exclude' => '', /* ID of categories to be excluded, separated by comma */
'post_type' => 'post',
'post_status' => 'publish'
);
$cats = get_categories($args);
foreach ($cats as $cat) :
$spp_sitemap .= '<div>';
$spp_sitemap .= '<h3>Category: <a href="'.get_category_link( $cat->term_id ).'">'.$cat->cat_name.'</a></h3>';
$spp_sitemap .= '<ul>';
query_posts('posts_per_page=-1&cat='.$cat->cat_ID);
while(have_posts()) {
the_post();
$category = get_the_category();
/* Only display a post link once, even if it's in multiple categories */
if ($category[0]->cat_ID == $cat->cat_ID) {
$spp_sitemap .= '<li class="cat-list"><a href="'.get_permalink().'" rel="bookmark">'.get_the_title().'</a></li>';
}
}
$spp_sitemap .= '</ul>';
$spp_sitemap .= '</div>';
endforeach;
$pages_args = array(
'exclude' => '', /* ID of pages to be excluded, separated by comma */
'post_type' => 'page',
'post_status' => 'publish'
);
$spp_sitemap .= '<h3>Pages</h3>';
$spp_sitemap .= '<ul>';
$pages = get_pages($pages_args);
foreach ( $pages as $page ) :
$spp_sitemap .= '<li class="pages-list"><a href="'.get_page_link( $page->ID ).'" rel="bookmark">'.$page->post_title.'</a></li>';
endforeach;
$spp_sitemap .= '<ul>';
return $spp_sitemap;
}
add_shortcode( 'spp-sitemap','spp_html_sitemap' );


The Above code will list all of your pages and posts into your sitemap and sort out all posts category wise. A single post  will be displayed once no matter if the post published under multiple categories.I hope you understand it.

How to remove pages from Wordpress sitemap:


If you want to remove pages from wordpress sitemap just remove the following given code from above given code:

$pages_args = array(
'exclude' => '', /* ID of pages to be excluded, separated by comma */
'post_type' => 'page',
'post_status' => 'publish'
);
$spp_sitemap .= '<h3>Pages</h3>';
$spp_sitemap .= '<ul>';
$pages = get_pages($pages_args);
foreach ( $pages as $page ) :
$spp_sitemap .= '<li class="pages-list"><a href="'.get_page_link( $page->ID ).'" rel="bookmark">'.$page->post_title.'</a></li>';
endforeach;
$spp_sitemap .= '<ul>';


You can also exclude certain pages and categories by entering their ID(mentioned in comments of above code).

I hope now you are able to make your own sitemap easily.If you like this article share it on social media to help other blogger brothers.
Let me know if you have any problem regarding to this article.If you have any problem you can comment me below.Thanks for reading this article.Stay tuned for more articles.