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

Tuesday, November 8, 2016

WordPress Automatically Empty Trash

This plugin can be used to Automatically Empty Trash after the n number of days the user wishes.

Using this plugin the user can set the number of days from which the trash should be automatically deleted in the plugin option from the Admin plugin section.

Features of the plugin are as follows:

  • Option to set number of days after which the trash should be automatically emptied.


This Plugin can be downloaded at  https://wordpress.org/plugins/automatically-empty-trash/

Saturday, May 21, 2016

Total Post Count in WordPress

To Display total post count on any page in WordPress the following code will be helpful.

<?php
$total_posts = wp_count_posts();
echo number_format($total_posts->publish);
?>


This will display total posts in WordPress in number format.

MS SQL : How to identify fragmentation in your indexes?

Almost all of us know what fragmentation in SQL indexes are and how it can affect the performance. For those who are new Index fragmentation...