by Juda Robillos | Jun 6, 2020 | Blog
Put the code below in your child theme function.php file. function cpt_posts_list() { $query_args = array( ‘post_type’ => ‘posttypeslug’, ‘posts_per_page’ => ‘-1’, ‘order’ => ‘ASC’,...
by Juda Robillos | Jun 5, 2020 | Blog
To remove the <p> paragraph tag on your post content, just put this code on your child theme function.php file. Just change the “posttypeslug” of the post type slug that you want to remove the paragraph tag. function remove_wpautop( $content ) {...