My pages disappeared from the list

Ok, I’ve solved the problem. There was a wrong parameter that cause an error on this specific select. The strange thing that just this select was affected. I needed to increase sort_buffer_size and be careful with max_sort_length. []’s Emanuel

Display inner pages like posts.[Like how post excerpt works]

By default, the page post type does not show the excerpt box like posts, but you can enable it like this(code goes into your theme’s functions.php file): add_action(‘init’, ‘excerpt_for_pages’); function excerpt_for_pages() { add_post_type_support( ‘page’, ‘excerpt’ ); } Then you can see the excerpt field when you edit your page. If not, make sure it is … Read more