Quantcast
Channel: WP Woodshed
Browsing latest articles
Browse All 16 View Live

Things to check when your code doesn’t work

If you’ve spent any time in the backend of your wordpress theme, chances are good that you’ve encountered the white screen of death (WSOD) at least once. This is when your site fails to load because...

View Article


Troubleshooting Strings, Double Quotes, and the Simple Syntax of Variable...

Though technically this could go in my previous post,  I opted to include it on its own, if only for my own mental clarity. Here’s the nitty gritty, and then I’ll explain it after:// THIS IS WRONG - no...

View Article


Gettin’ Global with Variable Scope

View Article

Hello, WP_Query

function ggb_display_author_posts() { global $ggb; $args = array( 'author_name' => get_the_title($ggb_members["nickname"]), ); $top10 = new WP_Query( $args ); if( $top10->have_posts() ) { echo...

View Article

Conditional Error When Adding a Custom Body Class

I recently came across a strange error while trying to add the custom body classes has_featured_image and no_featured_image to posts (based on whether they had a featured image or not). Here’s what I...

View Article


Putting together a local Apache server to run PHP scripts

I was going through Jasko Koyn’s OOP php tutorial (link) and needed a server to execute some of the php scripts. Here’s how I went about it, using Bitnami’s AMP stack. The following instructions are...

View Article

Codewars JavaScript Kata #1

I’m currently learning a bit of javascript, using a variety of resources, one of them being codewars. So I thought I would post the katas as I work through them (slowly, of course), including my...

View Article

Codewars JavaScript Kata #2

Correct the following code: [gist id=”420b3f151a6bb94658bb” file=”codewars_javascript_kata_02_problem.js”] Here’s my solution: [gist id=”420b3f151a6bb94658bb”...

View Article


Jekyll + BrowserSync

I’m completely infatuated with watch commands and live reloading. It’s like magic. Here are a couple quick commands that I’ve been using with Jekyll: For Jekyll: jekyll serve --incremental --host...

View Article


Vagrant and VVV setup

Installing Vagrant and VVV (and moving from an old instance to new) Step 1 Install VirtualBox. Step 2 Install VVV via git clone into your chosen dir (Here I’m using my-project-dir as a generic name)....

View Article
Browsing latest articles
Browse All 16 View Live