Articles

Adminer an alternative to clunky old PhpMyAdmin

Check out Ad-Miner this is the way to go when you quickly and easily want to access you SQL Files.
Read More

Merging a pull request using BitBucket

Used when a developer has pushed some code upstream and wants to merge with yours or the master branch. First, you will be notified that someone has made a pull request. In your
Read More

Making a pull request using BitBucket

This is required if you want to push your code upstream to a master repo. Go to your repo and ‘Create a pull request’ Then make sure you have selected the branch you
Read More

Meta Tags Every website should have

General meta tags <title>Up to 70 Characters of Keyword-relevant text here</title> <meta name=”description” content=”Approximately 140 words or less of text
Read More

remove or customise icon found in ‘previous_post_link()’ and ‘next_post_link()’

Use the following code to remove the default backward and forward icons. Original: <?php previous_post_link() ?> <?php next_post_link(); ?> Change to: <?php
Read More

Checking if a custom post type field exits

if(get_field('post_type_name')){ //output value if poste type exists
Read More