mirror of
https://gh.wpcy.net/https://github.com/diggy/polylang-cli.git
synced 2026-04-28 16:42:37 +08:00
17 lines
369 B
PHP
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,
|
|
) );
|
|
|
|
}
|