Skip to content

Instantly share code, notes, and snippets.

@kish2011
Created February 20, 2017 06:50
Show Gist options
  • Save kish2011/31433b1e48aa1e17338db14728ef9632 to your computer and use it in GitHub Desktop.
Save kish2011/31433b1e48aa1e17338db14728ef9632 to your computer and use it in GitHub Desktop.
add_shortcode('job_count_jobs','job_count_jobs');
function job_count_jobs() {
$count_jobs = wp_count_posts( $post_type = 'job_listing' );
$html = '';
if ( $count_jobs ) {
$count_jobs->publish;
$html .= '<h2>';
$html .= $count_jobs->publish;
$html .= esc_attr__( ' "TOTAL JOBS', 'jobster' );
$html .= '</h2>';
return $html;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment