What happened to the Menu Order option for posts (for ordering posts by Menu Order in Block Editor (Gutenberg)?

Seems like the Post Attributes option for Posts has to be added manually. By adding add_action( ‘admin_init’, ‘add_support_for_posts_order’ ); function add_support_for_posts_order() { add_post_type_support( ‘post’, ‘page-attributes’ ); } However, page has a support by default. So, only “post” is to be supported.

Override categories with Pages (block theme)

In your scenario, where you want to override an auto-generated category page with a manually-created Page in WordPress, especially when using block themes, the challenge arises because block themes use a different file structure compared to classic themes. They rely on HTML templates and theme.json instead of the traditional PHP templates. Here’s a more elegant … Read more