Tell me how can I change what appears between categories when I post in more than one category?
Answer Posted / Aditya Kumar Thakur
To customize the text that appears between categories when posting in multiple categories, follow these steps:n1. Go to Appearance > Editor.n2. Select your theme's functions.php file.n3. Add or modify this code at the bottom of the file:nn```phpnfunction new_excerpt_more($more) {n global $post; n return ' · '. get_the_category_list( ', ' );n}nadd_filter('excerpt_more', 'new_excerpt_more');n```nReplace the code inside the function with your desired text and separator.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers