Exemplo n.º 1
0
 static function init($options)
 {
     self::$options = $options;
     add_action('wp_print_styles', array(__CLASS__, 'stylesheets'));
 }
Exemplo n.º 2
0
 static function init($options)
 {
     self::$options = $options;
     add_action('wp_enqueue_scripts', array(__CLASS__, 'stylesheets'));
 }
Exemplo n.º 3
0
 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'));
 }