Title: Query loop new tab
Last modified: September 11, 2024

---

# Query loop new tab

 *  [davidleecpd](https://wordpress.org/support/users/davidleecpd/)
 * (@davidleecpd)
 * [1 year, 8 months ago](https://wordpress.org/support/topic/query-loop-new-tab/)
 * Hi I need to get the query loop links to open in a new tab.
 * Is there a way to do this?
 * (they’re not buttons – they’re woo product titles which are populated using the
   query loop function)
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fquery-loop-new-tab%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 1 replies (of 1 total)

 *  [ying](https://wordpress.org/support/users/yingscarlett/)
 * (@yingscarlett)
 * [1 year, 8 months ago](https://wordpress.org/support/topic/query-loop-new-tab/#post-18008707)
 * Hi there,
    1. add a css class to the headline block which represents the product title, eg.`
       my-product-title`. [https://wordpress.com/support/wordpress-editor/adding-additional-css-classes-to-blocks/](https://wordpress.com/support/wordpress-editor/adding-additional-css-classes-to-blocks/)
    2. add this PHP code to alter the output of the dynamic link of the headline block.
 *     ```wp-block-code
       add_filter( 'render_block_generateblocks/headline', function( $block_content, $block ) {    if (       !is_admin() &&       ! empty( $block['attrs']['className'] ) &&       strpos( $block['attrs']['className'], 'my-product-title' ) !== false     ) {      $post_id = get_the_ID();      $look_for = '<a';	  $replacement = '<a target="_blank" ';	  $block_content = str_replace($look_for,$replacement,$block_content);    }      return $block_content; }, 10, 2 );
       ```
   
 * Adding PHP: [https://docs.generatepress.com/article/adding-php/](https://docs.generatepress.com/article/adding-php/)

Viewing 1 replies (of 1 total)

The topic ‘Query loop new tab’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/generatepress/3.6.1/screenshot.
   png)
 * GeneratePress
 * [Support Threads](https://wordpress.org/support/theme/generatepress/)
 * [Active Topics](https://wordpress.org/support/theme/generatepress/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/generatepress/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/generatepress/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [ying](https://wordpress.org/support/users/yingscarlett/)
 * Last activity: [1 year, 8 months ago](https://wordpress.org/support/topic/query-loop-new-tab/#post-18008707)
 * Status: not resolved