Blog

Archive for the WordPress Category


oEmbed Gist WordPress Plugin Test
Posted on May 11, 2018 in WordPress by Matt Jennings

https://gist.github.com/Hollyw00d/172e48e01e9a17e8720f2bd3a0cbb065

https://gist.github.com/Hollyw00d/a192c02e9bba4db71b07d5f4776776ce


WordPress PHP and MySQL Code Cheat Sheet
Posted on November 17, 2017 in PHP, WordPress by Matt Jennings

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

<?php the_content(); ?>

<?php endwhile; endif; ?>

<h2 class=”clear”>Featured Projects</h2>

Read more


Creating Custom Post Types, with Multiple Text Fields in a Single Meta Box and Template Info, in WordPress
Posted on October 31, 2015 in PHP, WordPress by Matt Jennings

Below are WordPress and PHP code samples on how to:

Create custom post types using a plugin.
Create multiple text fields (using …

Read more


Document Ready Substitute to Make Custom jQuery Execute in WordPress
Posted on March 16, 2015 in JavaScript, jQuery, WordPress by Matt Jennings

To make custom jQuery execute in WordPress (at least 4 and above), in your external JS file add the code …

Read more


How to Move a WordPress Install from a Directory to a Sub-Domain on the Same Web Host
Posted on October 14, 2013 in Command Line, Linux, WordPress by Matt Jennings

Some of the info in this post was taken from a post by David Coveney, James Whitehead and …

Read more