19
WordPress Hooks Scott Cariss • @l3rady • Big Fish Ltd

WordPress hooks - WPLDN July 2013 Meetup

  • Upload
    l3rady

  • View
    313

  • Download
    1

Embed Size (px)

Citation preview

Page 1: WordPress hooks - WPLDN July 2013 Meetup

WordPress HooksScott Cariss • @l3rady • Big Fish Ltd

Page 2: WordPress hooks - WPLDN July 2013 Meetup

What I'm going to cover

The WordPress page lifecycle.

What are hooks and how do they fit into the page lifecycle?

Why use hooks?

What are actions

What are filters

Examples

Page 3: WordPress hooks - WPLDN July 2013 Meetup

The WP page lifecycle

"A page life cycle is nothing more than a combination of the events that take place from when a browser requests a page to when the server returns the page to the browser."

Lets look at loading a single page in WP - Look at the requested page ID - Query the database - Get associated data (Categories, tags, images, etc) - Return all of the data to the browser

Page 4: WordPress hooks - WPLDN July 2013 Meetup

The WP page lifecycle

The template files and the calls to the API functions are then responsible for rendering, styling and position the data on the screen

Sounds simple but this is just a simple page load. Think of more complex sites WP sites you have been on.

You can now understand how intensive this particular process can be.

Page 5: WordPress hooks - WPLDN July 2013 Meetup
Page 6: WordPress hooks - WPLDN July 2013 Meetup

The WP page lifecycle

"While WordPress is running its series of queries and preparing to render data back to the browser, it’s looking at all of the custom hooks – that is, the actions and filters – that have been written and is passing data through those filters before returning data to the browser."

At this point it's important to define what hooks are and look at the difference between action and filter hooks and how they play into this whole lifecycle

Page 7: WordPress hooks - WPLDN July 2013 Meetup

What are hooks and why use them?

They are the backbone of WordPress.

They enable developers to "hook" into the WP lifecycle to change how it works without modifying the core code.

Developers hook code is separate from WP core so that WP updates don't remove or destroy the developers code.

Page 8: WordPress hooks - WPLDN July 2013 Meetup

Different functions for hooks

Action Hooks

- do_action() - add_action() - remove_action()

- has_action() - do_action_ref_array() - did_action() - remove_all_actions()

Filter Hooks

- apply_filters() - add_filters() - remove_filters()

- has_filter() - current_filter() - merge_filters() - remove_all_filters()

Page 9: WordPress hooks - WPLDN July 2013 Meetup

Using action hooksdo_action( 'hook_name', $arg1, $arg2, ... );

add_action( 'hook_name', 'your_function_name', [priority], [number_args_accepted] );

remove_action( 'hook_name', 'function_to_remove', [priority], [number_args_accepted] );

Page 10: WordPress hooks - WPLDN July 2013 Meetup

Using filter hooks$value = apply_filters( 'hook_name', $value, $value2, ... );

add_filter( 'hook_name', 'your_filter_function', [priority], [number_args_accepted] );

remove_filter( 'hook_name', 'filter_function_to_remove', [priority], [number_args_accepted] );

Page 11: WordPress hooks - WPLDN July 2013 Meetup

Examples

Changing the excerpt length on the home page:

function wpldn_excerpt( $length ) {if ( is_home() ) {

return 20;}return $length;

}add_filter( 'excerpt_length', 'wpldn_excerpt', 999 );

Page 12: WordPress hooks - WPLDN July 2013 Meetup

Examples

Adding Google Maps JS to contact us page

function wpldn_maps_js() {if ( !is_page( 'contact-us' ) ) {

return;}

wp_enqueue_scripts( 'google_maps_api', '[PATH_TO_GOOGLE_MAP_API]', array(), false, true );

wp_enqueue_scripts( 'my_map_js', '[PATH_TO_YOUR_JS]', array( 'google_maps_api' ), false, true );}add_action( 'wp_enqueue_scripts', 'wpldn_maps_js' );

Page 13: WordPress hooks - WPLDN July 2013 Meetup

Examples

Load a different theme template file at will

function wpldn_any_file() {if( !is_page( "about-us" ) ) {

return;}include( '/path/to/any/file.extension' );exit();

}add_action( 'template_redirect', 'wpldn_any_file' );

Page 14: WordPress hooks - WPLDN July 2013 Meetup

Examples

Using pre_get_posts to change the main query

function wpldn_change_query( $query ) {if( $query->is_home() && $query->is_main_query() ) {

$query->set( 'posts_per_page', 20 );}

}add_action( 'pre_get_posts', 'wpldn_change_query' );

Page 15: WordPress hooks - WPLDN July 2013 Meetup

Examples

Remove that pesky capital_P_dangit function

remove_filter( 'the_title', 'capital_P_dangit', 11 );remove_filter( 'the_content', 'capital_P_dangit', 11 );remove_filter( 'comment_text', 'capital_P_dangit', 31 );

* Check /wp-includes/default-filters.php to see what functions WP is applying to its own filters

Page 16: WordPress hooks - WPLDN July 2013 Meetup

Resources

WordPress Codex - Action Reference

Page 17: WordPress hooks - WPLDN July 2013 Meetup

Resources

Debug Bar plugin & Action Hooks add on

Page 18: WordPress hooks - WPLDN July 2013 Meetup

Don't be scared!

Rummage around in core code to find filters and hooks that are not documented.

A good knowledge of PHP will help you to find and understand WordPress hooks.

IDEs can help in navigating through WP core code.

Page 19: WordPress hooks - WPLDN July 2013 Meetup

Questions?