コード例 #1
0
ファイル: core.php プロジェクト: adisonc/MaineLearning
 static function init($options)
 {
     self::$options = $options;
     add_action('wp_print_styles', array(__CLASS__, 'stylesheets'));
 }
コード例 #2
0
ファイル: core.php プロジェクト: KurtMakesWeb/CandG
 static function init($options)
 {
     self::$options = $options;
     add_action('wp_enqueue_scripts', array(__CLASS__, 'stylesheets'));
 }
コード例 #3
0
ファイル: core.php プロジェクト: selectSIFISO/.comsite
 function init($options)
 {
     self::$options = $options;
     add_action('wp_print_styles', array(__CLASS__, 'stylesheets'));
     add_filter('previous_posts_link_attributes', array(__CLASS__, 'previous_posts_link_attributes'));
     add_filter('next_posts_link_attributes', array(__CLASS__, 'next_posts_link_attributes'));
 }