is_singular(array()) を使用して特定の投稿タイプのみのスタイルをエンキューしようとしていますが、投稿タイプ static を定義すると機能し、get_option を使用して追加すると機能しません。
これが私のコードです。
// load front end scripts
function rm_scripts() {
$types = new review_media_system;
$ptpys = $types->rm_allow_types();
echo $ptpys;
if(!is_admin()){
wp_enqueue_style('rm-stylesheet', RM_URL.'css/rm-style.css',null, 1);
if(is_singular(array($ptpys))){
wp_enqueue_style('rm-admin_gallery_css', RM_URL.'css/responsiveslides.css',null, 1);
}
}
}
add_action('wp_enqueue_scripts', 'rm_scripts');