wpsc_get_post_types()WPSCache 1.0

Возвращает

null. Ничего (null).

Использование

wpsc_get_post_types();

Код wpsc_get_post_types() WPSCache 1.12.0

function wpsc_get_post_types() {

	$preload_type_args = apply_filters( 'wpsc_preload_post_types_args', array(
		'public'             => true,
		'publicly_queryable' => true
	) );

	$post_types = (array) apply_filters( 'wpsc_preload_post_types', get_post_types( $preload_type_args, 'names', 'or' ));

	return "'" . implode( "', '", array_map( 'esc_sql', $post_types ) ) . "'";
}