The following steps show how to format a table in a Word document so that the table does not split across multiple-pages (when it can fit in one page). For…
How well a website prints is often not considered by web developers - but it can still be an important part of the user experience - especially if you have…
The following code will disable comments and pingbacks in a WordPress. add_filter( 'pings_open', '__return_false', 10, 2 ); add_filter( 'comments_open', '__return_false', 10, 2 ); To disable for all multi-site websites, you…
The following code shows how to create a shortcode which will load and display an external file. This can be used anywhere shortcodes are supported - for example posts, pages,…
By default WordPress displays a toolbar (known as the admin bar) on all pages when users are logged in. This isn't necessary for a lot of WordPress sites, for example…
When sharing links on Facebook the first "best" image is automatically selected to display along with the link. For example: If the image selected is not suitable, the standard method…
The following jQuery shows a method I've used to automatically format images with a caption taken from the image ALT tag. This method is useful where you can only insert…
Here's four options for disabling comments in WordPress. Please note - any existing comments may still be displayed, depending on how your theme is configured. You may need to delete…