admin管理员组

文章数量:1384140

I want to remove a character "h" generated by code of templates of the theme. I don't want to use templates in Child Theme for that, I prefer to use a function in functions.php to remove the string in templates that generate the character:

esc_html_e('h','bridge');

Is there a solution for that ?

More context in a template file :

<div class="post_info">
<span class="time">
<?php esc_html_e('Posted at','bridge'); ?> 
<?php the_time('H:i'); ?>
<?php esc_html_e('h','bridge'); ?></span>
<?php esc_html_e('in','bridge'); ?>
<?php the_category(', '); ?>

本文标签: filtersUse a functions in functionsphp to remove a string for template theme