Skip to content

Instantly share code, notes, and snippets.

@softiconic
Created May 25, 2021 17:21
Show Gist options
  • Save softiconic/a9db5ec7a7a5763247d7870c6b8bc95b to your computer and use it in GitHub Desktop.
Save softiconic/a9db5ec7a7a5763247d7870c6b8bc95b to your computer and use it in GitHub Desktop.
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