/*CAROUSEL ARROWS*/ .wpex-carousel__arrow-icon svg, .wpex-carousel__arrow-icon.wpex-icon, .wpex-carousel__arrow svg /*, .wpex-slider .sp-arrow-inner*/ { display: none; } .wpex-carousel__arrow:where(:not(.theme-button))…
Post ID Shortcode
add_shortcode( 'postid', 'post_id_sh' );
function post_id_sh($atts, $content, $tag) {
global $post;
return get_the_ID();
}