• Resolved denmo21

    (@denmo21)


    Hello,
    i just installed the Plugin unfortunately afterwards the options for the Attributes like “Parent” template and order are missing and all other options from my Theme like custom fields etc. This only applies to the Posts not to the Pages

    What can i do please?

Viewing 1 replies (of 1 total)
  • Posts are not hierarchical by default so you cannot have a “Parent” for default posts.
    Also to enable order for posts you have to do something like this:

    add_action( ‘admin_init’, ‘posts_order_wpse_91866’ );

    function posts_order_wpse_91866()
    {
    add_post_type_support( ‘post’, ‘page-attributes’ );
    }

    This is not a support forum for wordpress. Please address these questions to stackoverflow or wordpress forums.

    This plugin doesn’t disable anything on default posts. It only creates custom posts.

Viewing 1 replies (of 1 total)
  • The topic ‘Post Attributs missing’ is closed to new replies.