Changeset 879
- Timestamp:
- 09/29/2014 07:04:04 AM (10 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins/handbook
- Files:
-
- 3 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/handbook/handbook.php
r800 r879 6 6 */ 7 7 8 require_once dirname( __FILE__ ) . '/inc/callout-boxes.php'; 8 9 require_once dirname( __FILE__ ) . '/inc/glossary.php'; 9 10 require_once dirname( __FILE__ ) . '/inc/table-of-contents.php'; … … 29 30 } 30 31 32 add_action( 'wp_enqueue_scripts', array( __CLASS__, 'enqueue_styles' ) ); 33 } 34 35 static public function enqueue_styles() { 36 wp_enqueue_style( 'wporg-handbook-css', plugins_url( '/stylesheets/callout-boxes.css', __FILE__ ), array(), '20140928' ); 31 37 } 32 38
Note: See TracChangeset
for help on using the changeset viewer.