Custom Post types form broken
-
When I install the plugin, everything works fine. But when I then try to add a custom post type, everything falls apart. There isn’t even a broadcast box anymore next to the default post types.
Turns out there’s a mistake in ThreeWP_Broadcast.php, in the root of the plugin.
Find the function “admin_post_types” on line 381. And replace line 394:
$input_post_types = array(
with
$input_post_types = array(array(
and also add an extra closing bracket on line 402, so change
);
to
));
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Custom Post types form broken’ is closed to new replies.