Skip to content

Instantly share code, notes, and snippets.

@tripflex
Created July 12, 2021 23:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tripflex/916c6d6c14deecf008f23c887bc0490d to your computer and use it in GitHub Desktop.
Save tripflex/916c6d6c14deecf008f23c887bc0490d to your computer and use it in GitHub Desktop.
Output Resume ID at Meta Start
<?php
add_action( 'single_resume_meta_start', 'smyles_output_resume_listing_id' );
function smyles_output_resume_listing_id(){
echo 'Listing ID: ' . get_the_ID();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment