polylang-cli/features/extra/init.php
2016-11-20 21:39:46 +01:00

17 lines
369 B
PHP

<?php
add_action( 'init', 'pll_cli_behat_init_' );
function pll_cli_behat_init_() {
register_post_type( 'book', array(
'public' => true,
'label' => 'Books'
) );
register_taxonomy( 'genre', 'book', array(
'label' => 'Genre',
'rewrite' => array( 'slug' => 'genre' ),
'hierarchical' => true,
) );
}