Delete page titles
Simply you can remove the title tag or you can comment also <?php //the_title(); ?>
Simply you can remove the title tag or you can comment also <?php //the_title(); ?>
long-title posts do not want published
Use this code in Header.php file. <title><?php wp_title(‘ – ‘, true, ‘right’); ?></title> But as per page view source code.you have forgot to close tag above tag in header. so please close tag. see this screenshot Should code like this: <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag(‘js’, new Date()); </script> <title><?php wp_title(‘ – … Read more
How to remove Nav-Menu tooltips? (Wp-Globus plugin)
For a process this large you are probably running up against timeout errors. You can either set your server’s timeout to a very, very large number (not recommended) or use a different process to achieve these results. Take a look at writing a command using WP CLI or adding a scheduled task to allow the … Read more
Remove title bar from post-new.php
How to filter page title for certain page?
Can’t give you fish, but I can try you to teach how to fish with a couple of pointers; hook into publish_post (good example code there) and / or post_updated in the function that is called that way, use wp_create_category (which will only create if the cat. name doesn’t exist yet) and with the cat … Read more
Need to replace some text string on a title
It’s because you’re not using the filter correctly. The the_title filter passes the title to be filtered as the $title argument, but you’re overwriting it with this code: global $post; $id = ($post->ID); $title = get_post( $id )->post_title; That code’s completely unnecessary because the title is already available in your function: function max_title_length( $title ) … Read more