// Content Views Pro - Change the "No posts found." message
add_filter( 'pt_cv_content_no_post_found_text', 'cvp_theme_no_post_found_text1', 100, 1 );
function cvp_theme_no_post_found_text1( $args ) {
$args = '선택된 글을 찾을 수 없습니다';
// In case you want to set custom text for specific views
global...