$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>Please help me to figure out how to display my tags|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

Please help me to figure out how to display my tags

matteradmin9PV0评论

desperately looking for help. Have a Wordpress theme which does not display post tags on a single page and I badly need to have them there. Developers only named a file which needs to be modified. It's "content-single.php" My site is / I can post all code here if needed.

Kindly help me to fix this.

desperately looking for help. Have a Wordpress theme which does not display post tags on a single page and I badly need to have them there. Developers only named a file which needs to be modified. It's "content-single.php" My site is http://nepyragas.eu/ I can post all code here if needed.

Kindly help me to fix this.

Share Improve this question asked Nov 29, 2018 at 18:44 Vytautas RavinskasVytautas Ravinskas 111 bronze badge
Add a comment  | 

1 Answer 1

Reset to default 0

You can use the WP function the_tags(), more info here.

You will have to figure out where exactly in your content-single.php to put this but you want to add something like this...

<p><?php the_tags(); ?></p>

View the link above for more examples.

Post a comment

comment list (0)

  1. No comments so far