Skip to content

Instantly share code, notes, and snippets.

@tripflex
Created November 26, 2024 21:23
Show Gist options
  • Save tripflex/e9e7ad9f4fbb15d4e54729c9418d2743 to your computer and use it in GitHub Desktop.
Save tripflex/e9e7ad9f4fbb15d4e54729c9418d2743 to your computer and use it in GitHub Desktop.
[candidate_photo] shortcode to output candidate photo (as thumbnail, etc)
<?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