Created
August 30, 2023 09:25
-
-
Save akther80/6e259a3ee04bf1b1564f307e87abd74a to your computer and use it in GitHub Desktop.
MyTravel - Display short desc in tour
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
if ( ! function_exists( 'mytravel_wc_template_loop_tour_display_desc' ) ) { | |
/** | |
* Output archive tour display location | |
*/ | |
function mytravel_wc_template_loop_tour_display_location() { | |
if ( ! mytravel_is_acf_activated() ) { | |
return; | |
} | |
?> | |
<a href="<?php echo esc_url( get_the_permalink() ); ?>" class="d-block"> | |
<div class="mb-1 d-flex align-items-center font-size-14 text-gray-1"> | |
<?php | |
the_field( 'short_description' ); | |
?> | |
</div> | |
</a> | |
<?php | |
} | |
} | |
add_action( 'mytravel_tour_before_shop_loop_item_title', 'mytravel_wc_template_loop_tour_display_desc', 80 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment