WordPress Snippets
As a WordPress developer I have collected / created / curated many snippets that I’ve used in my projects. I hope you find them useful.
General HTML / WordPress tags
Get your template’s directory
1<link href="<?php echo …As a WordPress developer I have collected / created / curated many snippets that I’ve used in my projects. I hope you find them useful.
1<link href="<?php echo …Shortcodes enable developers to create special kinds of content, following the idea of macros. One very famous short code is “gallery” needed to insert a gallery of images into a post.
The good thing about shortcode’s is that final users are free to …
Here is a snippet to add 64×64 images to the Admin Post Columns in WordPress. Having thumbnails may result extremely helpful, specially if you have hundreds of posts.
![]()
You have to copy and paste the following code into the functions.php file of your …
This time I would like to make a list of recommended WordPress plugins. They are alphabetically sorted and have many different purposes. The descriptions shown were taken right from the WordPress description.
Here we go:
By Bob King …
Before trying the queries in this page, I recommend you to read this full article to learn more about the process.
To update WordPress options with the new blog location, use the following SQL command:
1UPDATE wp_options SET option_value = replace …