Change page title in admin area

Is there someway to change the title in wp-admin? Been looking all over google but no one seem to mention it. I simply want to get rid of “— WordPress” and possibly change the “‹” into some other symbol. Any ideas? 4 add_filter(‘admin_title’, ‘my_admin_title’, 10, 2); function my_admin_title($admin_title, $title) { return get_bloginfo(‘name’).’ • ‘.$title; } … Read more

Issues with title-tag and document_title_parts

WordPress version 4.5.1 I’m trying to dynamically update page titles on a particular template. After lots of digging and learning about the wp_title() changes, I’m attempting to use document_title_parts. However, I can’t get the filter to run at all. I’m in a child theme, functions.php: add_theme_support( ‘title-tag’ ); //add_filter(“after_setup_theme”, function(){ add_theme_support(“title-tag”); }); add_filter( ‘document_title_parts’, function( … Read more

query_post by title?

is it possible to create a loop of posts using WP_Query or query_posts using the title? ie $args = array(‘post_title’=’LIKE ‘.$str.’% ‘); $res = WP_Query($arg); // the loop… // trying this now… $mypostids = $wpdb->get_col(“select ID from $wpdb->posts where post_title like ‘Abb%’ “); echo count($mypostids).”, “; // works but can’t echo out array of IDs … Read more