Hello,
I have strange problem here.
I try to cal the "get_post_types" within the plugin, but it never gives me any registered custom post types.
here is the code:
$args_types=array(
'public' => true, // publicaly visible
'_builtin' => false, // only not built in
);
//~ get all post types
$post_types = get_post_types($args_types,'objects');
when I do the same in the template everything is fine..
do you know how to fix it.
thx