jQuery | Select All Checkboxes

jQuery select all boxes description.   <?php /* You of course need to make sure the jQuery js file is being included. Here is one method of implementing this:<script src=”https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js”...

jQuery on click scroll to content

I needed a way to on clicking of an A tag scroll to top of a list that was getting updated.  So here is the code that I came across. <script> jQuery(document).ready(function() { jQuery(‘a.link-designation').on(“click”, function () {...

Jump to Confirmation Message

So there are times where there is a need to jump to the confirmation that is being shown on the form page after submission.  Here are a few examples of how to do this. //popping down to confirmation message upon submission for all forms add_filter(...

Last Modified Column

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...

Limiting Robots using Robots.txt

So I am trying to build a good robots.txt file that  allows good bots while blocking others. User-Agent: * Disallow: / User-Agent: Googlebot User-Agent: Googlebot-Mobile User-Agent: Googlebot-Image User-Agent: Mediapartners-Google User-Agent: Adsbot-Google User-Agent:...