MetroCode Overview

Reference

Sample Code

<?php

    $metro_code = $logichop->get_data( 'Location.MetroCode', false );
    $metro_code_tag = 'metro-code-' . $metro_code;

    var_dump( $metro_code_tag );

    $args = array (
        'tag' => $metro_code_tag,
        //'post-type' => 'your-post-type'
    );

    $query = new WP_Query( array( 'tag' => $metro_code_tag ) );

?>

<?php if ( $query->have_posts() ) : while ( $query->have_posts() ) : $query->the_post(); ?>

    <h3 style="background: yellow; padding-left: 80px;"><?php the_title(); ?></h3>

<?php endwhile; endif; ?>
Yo ! Thanks for checking out Logic Hop!