Changeset 848 for sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-central-2012/functions.php
- Timestamp:
- 09/10/2014 06:41:11 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-central-2012/functions.php
r842 r848 35 35 add_action( 'pre_get_posts', array( __CLASS__, 'pre_get_posts' ) ); 36 36 add_action( 'init', array( __CLASS__, 'process_forms' ) ); 37 add_action( 'wp_enqueue_scripts', array( __CLASS__, 'enqueue_scripts' ) ); 37 38 38 39 add_filter( 'excerpt_more', array( __CLASS__, 'excerpt_more' ), 11 ); … … 176 177 177 178 /** 179 * Enqueue scripts and styles. 180 */ 181 static function enqueue_scripts() { 182 wp_enqueue_script( 'central-navigation', get_stylesheet_directory_uri() . '/js/navigation.js', array(), '20140909', true ); 183 } 184 185 /** 178 186 * Filters excerpt_more. 179 187 */
Note: See TracChangeset
for help on using the changeset viewer.