SOLVED: Meta Tags Seperator Not Working

Hello @wissam,

Bricks 1.3.2 has two possibilities for you:

  1. Use the new dynamic data filter to set the separator: For a space use {post_terms_post_tag: } ; for a pipe use {post_terms_post_tag: | }

  2. Hook on the new WP filter ‘bricks/dynamic_data/post_terms_separator’ and set the post terms separator globally for all the dynamic data “post_terms_” tags. As one example:

    <?php
    add_filter( 'bricks/dynamic_data/post_terms_separator', function( $sep, $post, $taxonomy ) {
         return ' : ';
     }, 10, 3 );
3 Likes