Rename Categories and Tags Using Genesis Framework
If you want to rename the display of ‘Categories’ and ‘Tags’ when using the Genesis framework, use the snippet below:
add_filter( 'genesis_post_meta', 'wpkb_post_meta_filter' );
function wpkb_post_meta_filter( $post_meta ) {
if ( ! is_page() ) {
$post_meta = '[[post_categories before="My Category Name: "]] [[post_tags before="My Tag Name: "]]';
return $post_meta;
}
}
Related Posts
- Rename Categories and Tags
- Remove Tags and Categories (Post Meta) Using Genesis Framework
- Validate in Laravel, That Checkbox IDs are Valid
- Default Options for Genesis Themes
- Wrap Primary and Secondary Navigation in DIV Using the Genesis Framework
- Configure allowed HTML Tags for Archive Views
- Always Show the "Read More" Link When Using the Astra Theme
- Remove Page Title on Frontpage Using Genesis Framework
- Replace Sidebar Using Genesis Framework