Toolset conditional August 29, 2019 [wpv- if evaluate= "'[wpv-current-user info='id']' = '[wpv-post-author format='meta' meta='ID']' OR '[wpv-current-user info='role']' = 'administrator'" ] //the content you want to hide goes here [/wpv- if ] Read more
Call posts using query August 28, 2019 $args = array ( 'post_type' => 'post' , 'tax_query' => array ( 'relation' => 'OR' , array ( 'taxonomy' => 'category' , 'field' => 'slug' , 'terms' => array ( 'quotes' ), ), array ( 'taxonomy' => 'post_format' , 'field' => 'slug' , ... Read more
remove CPT from wordpress August 27, 2019 function delete_post_type(){ unregister_post_type( 'feature' ); } add_action('init','delete_post_type', 100); Read more