Title: HTML-code in title
Last modified: September 8, 2020

---

# HTML-code in title

 *  [jarven](https://wordpress.org/support/users/jarven/)
 * (@jarven)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/html-code-in-title/)
 * Using following code to add line break in titles.
 *     ```
       //ADD LINE BREAK
       add_filter( 'the_title', 'custom_the_title', 10, 2 );
       function custom_the_title( $title, $post_id ) {
           $post_type = get_post_field( 'post_type', $post_id, true );
           //if( $post_type == 'product' || $post_type == 'product_variation' )
               $title = str_replace( '|', '<br/>', $title );
           return $title;
       }
       ```
   
 * Title could be like “Row 1 | Row 2” and | (pipe) will be replaced by `<br/>` 
   and result in browser will be:
    Row 1 Row 2
 * This works great for all pages/products but a couple of weeks ago `<br/>` will
   not be transformed.
    It will now be: Row 1 <br/> Row 2
 * When Genesis Connect for WooCommerce plugin is deactivated everything works.

Viewing 1 replies (of 1 total)

 *  [corinneolson](https://wordpress.org/support/users/corinneolson/)
 * (@corinneolson)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/html-code-in-title/#post-13409147)
 * Hi there,
 * We do not see anything wrong with the code you shared and are not able to reproduce
   the error with Genesis Sample and Genesis Connect 1.1.1.
 * Has the plugin been modified, or did you change anything else a couple of weeks
   ago when you started having this issue?

Viewing 1 replies (of 1 total)

The topic ‘HTML-code in title’ is closed to new replies.

 * ![](https://ps.w.org/genesis-connect-woocommerce/assets/icon-256x256.png?rev=
   1335684)
 * [Genesis Connect for WooCommerce](https://wordpress.org/plugins/genesis-connect-woocommerce/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/genesis-connect-woocommerce/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/genesis-connect-woocommerce/)
 * [Active Topics](https://wordpress.org/support/plugin/genesis-connect-woocommerce/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/genesis-connect-woocommerce/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/genesis-connect-woocommerce/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [corinneolson](https://wordpress.org/support/users/corinneolson/)
 * Last activity: [5 years, 8 months ago](https://wordpress.org/support/topic/html-code-in-title/#post-13409147)
 * Status: not resolved