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

WordPress: The good parts

WordPress: The good parts

Presentation to the PHP community about some awesome parts about WordPress core (yes they do exist).

Anton Timmermans

May 12, 2015
Tweet

More Decks by Anton Timmermans

Other Decks in Technology

Transcript

  1. Who am I? • Anton Timmermans • Full time WordPress

    Developer • Core Contributor & developer.wordpress.org • @atimmer10
  2. Hook system add_filter( 'some_filter', 'callable_to_execute' ); apply_filters( 'some_filter', 'value_to_change' );

    add_action( 'some_action', 'callable_to_execute' ); do_action( 'some_action' );
  3. The loop <?php while ( have_posts() ) : the_post(); ?>

    <article <?php post_class(); ?>> <h2><?php the_title(); ?></h2> <?php the_content(); ?> </article> <?php endwhile; ?>