Example #1
0
 /**
  * Constructor
  * Register Taxonomy. See documentation in Taxonomy_Core, and in wp-includes/taxonomy.php
  *
  * @since 0.1.0
  * @param  object $sermons GCS_Sermons object.
  * @return void
  */
 public function __construct($sermons)
 {
     parent::__construct($sermons, array('labels' => array(__('Tag', 'gc-sermons'), __('Tags', 'gc-sermons'), 'gcs-tag'), 'args' => array('hierarchical' => false, 'rewrite' => array('slug' => 'sermon-tag'))));
 }
Example #2
0
 /**
  * Constructor
  * Register Taxonomy. See documentation in Taxonomy_Core, and in wp-includes/taxonomy.php
  *
  * @since 0.1.0
  * @param  object $sermons GCS_Sermons object.
  * @return void
  */
 public function __construct($sermons)
 {
     parent::__construct($sermons, array('labels' => array(__('Sermon Series', 'gc-sermons'), __('Sermon Series', 'gc-sermons'), 'gc-sermon-series'), 'args' => array('hierarchical' => false, 'show_admin_column' => false, 'rewrite' => array('slug' => 'sermon-series'))));
 }
Example #3
0
 /**
  * Constructor
  * Register Taxonomy. See documentation in Taxonomy_Core, and in wp-includes/taxonomy.php
  *
  * @since 0.1.0
  * @param  object $sermons GCS_Sermons object.
  * @return void
  */
 public function __construct($sermons)
 {
     parent::__construct($sermons, array('labels' => array(__('Topic', 'gc-sermons'), __('Topics', 'gc-sermons'), 'gcs-topic'), 'args' => array('rewrite' => array('slug' => 'sermon-topic'))));
 }
 /**
  * Constructor
  * Register Taxonomy. See documentation in Taxonomy_Core, and in wp-includes/taxonomy.php
  *
  * @since 0.1.3
  * @param  object $sermons GCS_Sermons object.
  * @return void
  */
 public function __construct($sermons)
 {
     parent::__construct($sermons, array('labels' => array(__('Scripture Reference', 'gc-sermons'), __('Scripture References', 'gc-sermons'), 'gcs-scripture'), 'args' => array('rewrite' => array('slug' => 'scripture-reference'))));
 }