Jun 25, 2018 | Tips & Tricks, Wordpress
When creating WordPress plugins or customize child themes, you will often need to reference files and folders. Hard-coded paths should never be used in WordPress development. It will cost a painful headache when you transfer your site from Dev to live. Good news is...
Jun 18, 2018 | Javascript, Tips & Tricks
One of JavaScript’s greatest assets is its non-blocking properties, or that it is an asynchronous language.Websites, like newspaper websites, take advantage of these non-blocking properties to provide a better user experience. Generally, a site’s code is...
Jun 14, 2018 | CSS, Tips & Tricks, Wordpress
So I am trying to call a shortcode(add_to_cart) that Woocommerce already built for one of my projects today. What WordPress function did I use? I used the “do_shortcode” function. First I created a WP_Query object so I can get customize queries to pull data from...