Здравствуйте. Названия виджетов выводятся в таком блоке
<aside id="primary" class="widget-area sidey" role="complementary" itemscope="itemscope" itemtype="http://schema.org/WPSideBar">
<section id="categories-2" class="widget-container widget_categories"><h3 class="widget-title"><span>Рубрики</span></h3> <ul>
<li class="cat-item cat-item-1"><a href="https://myhoma.su/category/%d0%b1%d0%b5%d0%b7-%d1%80%d1%83%d0%b1%d1%80%d0%b8%d0%ba%d0%b8/" >Без рубрики</a>
</li>
</ul>
</section>
</aside>
Хочу позаменять теги h3 на простые div-ы, но не могу найти в коде где они.
В файле темы sidebar-left.php такой код
<?php
/**
* The Sidebar that is normally displayed on the left side (Primary).
*
* @package Fluida
*/
?>
<aside id="primary" class="widget-area sidey" role="complementary" <?php cryout_schema_microdata('sidebar');?>>
<?php cryout_before_primary_widgets_hook(); ?>
<?php if (is_active_sidebar('widget-area-left')):
dynamic_sidebar( 'widget-area-left' );
else: ?>
<section class="widget-container widget-placeholder">
<div class="widget-title"><?php _e('Left Sidebar','fluida'); ?></div>
<p>
<?php
printf( __('You currently have no widgets set in the left sidebar. You can add widgets via the <a href="%s" target="_blank">Dashboard</a>.','fluida'),esc_url( admin_url()."widgets.php") ); echo "<br/>";
printf( __('To hide this sidebar, switch to a different Layout via the <a href="%s" target="_blank">Theme Customizations</a>.','fluida'), esc_url( admin_url() . "customize.php" ) );
?>
</p>
</section>
<?php endif; ?>
<?php cryout_after_primary_widgets_hook(); ?>
</aside>
Меняю h3 на div, но на сайте он все равно не меняется.