skip to Main Content

WordPress post-title H5 change to H2

Need to change my WordPress title headings from h5 to h2. Nothing seems to work. <div class="box-text spacing-medium text-center"> <h5 uppercase"><?php the_title(); ?></h5> <?php the_title( '<h2 class="post-title">', '</h2>' ); ?> I tried changing h5 to h2 and it didn't fix…

VIEW QUESTION

Change Order received title issue in WooCommerce

I have the following code which works and changes the title of the 'order received' page: add_filter( 'the_title', 'woo_title_order_received', 10, 2 ); function woo_title_order_received( $title, $id ) { if ( function_exists( 'is_order_received_page' ) && is_order_received_page() && get_the_ID() === $id )…

VIEW QUESTION
Back To Top
Search