How to echo Tags and Categories as plain text
Yes, there’s many ways to do it, You must add parameters to the function to override default value, first parameter must be empty the_tags( ” ); echo ‘<meta itemprop=”keywords” content=”‘. the_tags( ”) .””/>’; There is also wp_get_post_terms() function if you want more control, Create a function in functions.php function wpse_get_tags(){ global $post; $term_list = wp_get_post_terms($post->ID, … Read more