Created
March 9, 2017 12:15
-
-
Save msaari/8545d3c5928b9b914e0f367a37e3b938 to your computer and use it in GitHub Desktop.
Media taxonomy that Relevanssi can index
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Add this code to theme functions.php | |
add_action( 'init', 'create_media_tax' ); | |
function create_media_tax() { | |
register_taxonomy( | |
'media_tag', | |
'attachment', | |
array( | |
'label' => __( 'Media tag' ), | |
'rewrite' => array( 'slug' => 'media_tag' ), | |
'hierarchical' => true, | |
) | |
); | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment