PATH:
var
/
www
/
clients
/
client1
/
web1
/
web
/
wp-content
/
plugins
/
vxcash
/
includes
<?php /** * Created by PhpStorm. * User: te * Date: 10.03.2016 * Time: 11:12 */ class Vxcash_Taxonomies { /** * @var Vxcash_Loader */ private $loader; /** * Vxcash_Taxonomies constructor. * * @param Vxcash_Loader $loader */ public function __construct(Vxcash_Loader $loader) { $this->loader = $loader; $this->loader->add_action('init', $this, 'create_taxonomies'); } /** * Create all new Taxonomies we need for VX Hosts */ public function create_taxonomies() { // Taxonomy for haircolor register_taxonomy('haarfarbe', Vxcash_Posttypes_Enum::VX_HOSTS, array( 'label' => __('Haarfarbe'), 'rewrite' => array('slug' => 'haarfarbe') )); // Taxonomy for figure register_taxonomy('figur', Vxcash_Posttypes_Enum::VX_HOSTS, array( 'label' => __('Figur'), 'rewrite' => array('slug' => 'figur') )); } }
[-] class-vxcash-deactivator.php
[edit]
[-] index.php
[edit]
[-] class-vxcash-posttypes-enum.php
[edit]
[-] class-vxcash-tablename-enum.php
[edit]
[-] class-vxcash-vxhost-custom-posttype.php
[edit]
[-] class-vxcash-vxvideo-custom-posttype.php
[edit]
[-] class-vxcash-taxonomies.php
[edit]
[-] class-vxcash-activator.php
[edit]
[+]
..
[-] class-vxcash-pornme-custom-posttype.php
[edit]
[-] class-vxcash.php
[edit]
[-] class-vxcash-loader.php
[edit]
[-] class-vxcash-vxhost-state-enum.php
[edit]
[-] class-vxcash-i18n.php
[edit]