Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Getting Started with WordPress Development

Getting Started with WordPress Development

WordPress is an incredibly powerful platform and framework for development, but until you learn how to use it you won't be able to make full use of its flexibility. In this session you will learn the core principles of WordPress development that will enable you to start taking full advantage of everything that it offers.

This presentation is aimed at experienced PHP developers who have minimal experience with WordPress development. It was presented at the Cape Town PHP Meetup on 23 April 2015: http://www.meetup.com/Cape-Town-PHP-Group/events/221748419/

The full video of the presentation is available here: https://www.youtube.com/watch?v=JbEgsygOxKU

Hugh Lashbrooke

April 23, 2015
Tweet

More Decks by Hugh Lashbrooke

Other Decks in Technology

Transcript

  1. Headers /* * Plugin Name: Seriously Simple Podcasting * Version:

    1.9.6 * Plugin URI: https://wordpress.org/plugins/seriously-simple-podcasting/ * Description: Podcasting the way it's meant to be. * Author: Hugh Lashbrooke * Author URI: http://www.hughlashbrooke.com/ * Requires at least: 4.0 * Tested up to: 4.2 * * Text Domain: seriously-simple-podcasting * Domain Path: /lang/ */
  2. <?php /* * Plugin Name: Google Redirect * Version: 1.0

    */ add_action( ‘init’, ‘google_redirect’ ); function google_redirect () { if( isset( $_GET[‘google_redirect’] ) ) { wp_redirect( ‘http://www.google.com’, 302 ); exit; } } ?> Bringing it Together