I wanted to be able to add a Last Modified date column to my Pages and Posts page. So I came across this website, ITSupportGuides, that had a create little code snippet to accomplish just what I was looking for. Ideally this should get added to a plugin so that you...
Sometimes securing a site also requires you to lock it down as to who can access the admin area. Here is a modification that can be done to the .htaccess file that will lock down the wp-login.php and also the wp-admin directory to specific IP addresses. Real easy to...
Sometimes it is easiest to modify the URL globally through SQL. Here are the main commands you are going to want to run to modify the URL's throughout the database. UPDATE wp_options SET option_value = replace(option_value, ‘http://www.oldurl',...
If you are ever looking for a quick and easy way to list all of the pages on your site that are published here is how I accomplished it. It uses the WordPress get_pages() function to then output the title and permalink if the post status is published. //use...
So WordPress has some emoji detection and modifications that get made by the core WordPress install. Here is some code that you can put into your functions.php file to disable this as it can sometimes cause issues in other browsers like Safari. // REMOVE EMOJI ICONS...