add_action( 'wp_footer', 'forminator_preload', 20 ); function forminator_preload() { global $post; if ( ! $post instanceof…
Post ID Shortcode
add_shortcode( 'postid', 'post_id_sh' );
function post_id_sh($atts, $content, $tag) {
global $post;
return get_the_ID();
}

