• Resolved epixsupport

    (@epixsupport)


    Hi,

    We have a website where on there blog page people have like content above the blog, I add it to the templates by pulling content from that ID.

    How ever in 4.2 the editor is disabled for the posts page. How do we get it back as we need it?

    Many Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • I have been doing the same thing. Annoyed that this has changed.

    I did some further searching and found this post and ticket.

    I managed to come up a this solution to re-enable the editor.

    /* enable page_for_posts editor */
    
    function custom_edit_form_after_title($post){
    	if ($post->ID == get_option('page_for_posts')) :
    		add_post_type_support('page','editor');
    	endif;
    }
    add_action('edit_form_after_title','custom_edit_form_after_title');
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Posts page editor removed in 4.2’ is closed to new replies.