//COMMENT FORM //change title conditionally for a certain post type function enym_comment_title($defaults) { // put…
Post ID Shortcode
add_shortcode( 'postid', 'post_id_sh' );
function post_id_sh($atts, $content, $tag) {
global $post;
return get_the_ID();
}
Comments (0)