WP Admin default view mode for Custom Post Type

To change it globally to excerpt for every post type I can use: function my_default_posts_list_mode( $default ) { return ‘excerpt’; } add_filter( ‘default-posts-list-mode’, ‘my_default_posts_list_mode’ ); But how can I achieve the same only for a Custom Post Type? Explanation: I’ve created a Custom Post Type. In WP Admin the default view mode is set to … Read more

Attempt to present UIViewController on UIViewController whose view is not in the window hierarchy

Just started using Xcode 4.5 and I got this error in the console: Warning: Attempt to present < finishViewController: 0x1e56e0a0 > on < ViewController: 0x1ec3e000> whose view is not in the window hierarchy! The view is still being presented and everything in the app is working fine. Is this something new in iOS 6? This … Read more