Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save barrykooij/494c6d6d74f77873e5ab69a1a8bc340a to your computer and use it in GitHub Desktop.
Save barrykooij/494c6d6d74f77873e5ab69a1a8bc340a to your computer and use it in GitHub Desktop.
<?php
add_action( 'wpcm_vehicle_content', function ( $vehicle ) {
echo "<ul>";
}, 1, 1 );
add_action( 'wpcm_vehicle_content', function ( $vehicle ) {
echo "</ul>";
}, 99, 1 );
add_action( 'wpcm_before_template_part', function ( $template, $slug, $vehicle ) {
if ( in_array( $slug, array( 'single-vehicle/data', 'single-vehicle/content', 'single-vehicle/features' ) ) ) {
echo "<li>";
}
}, 10, 3 );
add_action( 'wpcm_after_template_part', function ( $template, $slug, $vehicle ) {
if ( in_array( $slug, array( 'single-vehicle/data', 'single-vehicle/content', 'single-vehicle/features' ) ) ) {
echo "</li>";
}
}, 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment