Blog

Archive for the WordPress Category


TinyMCE Advanced Plugin Table Insertion Demo
Posted on May 11, 2018 in WordPress by Matt Jennings

Column 1
Column 2
Column 3

Row 2 
Row 2
Row 2

Row 3
Row 3
Row 3


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

Razor (ASP.NET) Example

View the code on Gist.

XML Example

View the code on Gist.


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

The Loop

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

<?php the_content(); ?>

<?php endwhile; endif; ?>

Custom Post
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…

To Top ↑