If you’re ever locked out of your site backend and need the WordPress version to perform an update, you can echo it via FTP using this code:
echo $wp_version;
Read More
In version 4.1 I recently encountered an update (version and plugin) error where the installer was unable to locate the wp-content directory to complete the update.
Read MoreSometimes it’s handy to utilize the same features that are available within the Posts area, inside of your Pages. Adding the Excerpt to the Pages, provides you with an additional, native field to pull data from and take advantage of when building your WordPress website.
Read MoreWordPress keep redirecting me to the login page, even though I’ve entered my username and password correctly, several times. Check the address bar for this information after wp-login:
?redirect_to=http%3A%2F%2Fyourdomainname.ca%2Fmbprospects%2Fwp-admin%2F&reauth=1
Remove it, and press enter. You will still be at the login screen, and yes, will have to login again, but there will no longer be a redirect loop taking place.
Read MoreRead this article about enabling Mandrill on your site with
Read MorePlace this within the single.php template to grab the Featured Image and format it automatically inline with the content.
the_post_thumbnail('large', array('class' => 'alignright'));
This can also be used in the loop with alongside posts with featured images.
Read MoreIt helps in the long run to install WordPress in a sub folder, this will keep multiple domains / folders better organized in your ftp.
Read MoreThis is a handy trick if you’re working with ajax or dynamic elements that are using a filter, such as Ultimate WordPress Query Search Filter.
Read MorePlace this code inside of the relevant Div
Read MoreBackground-Attachment: Fixed does not work in Safari when using multiple background images in Safari. The images will disappear when the browser is resized, or accessed in mobile device. Background-Attachment: Fixed will render the images properly in Chrome, and Firefox, but even when coupled with Display: Block, and Overflow: Hidden to force images to appear, will not work properly in Safari.
Read MoreAdd this code to your functions.php file in order to create Breadcrumbs.
Read More