Created
November 26, 2024 21:23
-
-
Save tripflex/e9e7ad9f4fbb15d4e54729c9418d2743 to your computer and use it in GitHub Desktop.
[candidate_photo] shortcode to output candidate photo (as thumbnail, etc)
This file contains 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
<?php | |
function display_candidate_photo_shortcode($atts) { | |
// Check if the function exists before calling it | |
if (function_exists('the_candidate_photo')) { | |
ob_start(); | |
// Options are full, thumbnail, medium, large | |
the_candidate_photo( 'thumbnail' ); | |
return ob_get_clean(); | |
} else { | |
return 'Candidate photo function not available.'; | |
} | |
} | |
add_shortcode('candidate_photo', 'display_candidate_photo_shortcode'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment