-
-
Save softiconic/a9db5ec7a7a5763247d7870c6b8bc95b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tags: [<?php | |
foreach ( get_the_terms( get_the_ID(), 'listing-tag' ) as $tax ) { | |
echo '"' . __( $tax->slug ) . '",'; | |
} | |
foreach ( get_the_terms( get_the_ID(), 'listing-amenity' ) as $tax ) { | |
echo '"' . __( $tax->slug ) . '",'; | |
} | |
foreach ( get_the_terms( get_the_ID(), 'listing-category' ) as $tax ) { | |
echo '"' . __( $tax->slug ) . '",'; | |
} | |
?>], | |
coin: '<?php | |
// foreach ( get_the_terms( get_the_ID(), 'listing-tag' ) as $tax ) { | |
// echo '<li class="coin-' . __($tax->slug) . '">' . __( $tax->slug ) . '</li>'; | |
// } | |
?>', |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment