Not the best solution, but still works for my needs.
I used the category description instead, with h1 tags so that it looks like a heading. Then removed the taxonomy page title with:
function my_theme_archive_title( $title ) {
return "";
}
add_filter( 'get_the_archive_title', 'my_theme_archive_title' );
Related Posts:
- WordPress permalink setting
- What is an alternative method to the WordPress private _doing_it_wrong() function
- Understanding WordPress functions’ naming conventions
- How do I Make a Theme “plugin-ready”?
- function triggered by “manage_users_custom_column” filter not working
- add_filter and remove_filter added before and after wp_query
- Determine which theme location a wp_get_nav_menu_items is for
- What’s the difference between hooks, filters and actions? [duplicate]
- How to use filter hook ‘post_updated_messages’ in coherence with action hook ‘save_post’
- Dynamically Override Fancy Title
- Does add_filter work outside functions.php
- What function to hook for changes made in status and visibility of a post
- WordPress security issue to output data from user input from theme option form
- WordPress after content Hook & external template part
- Can I change header.php of current theme through a plugin function?
- get_current_screen() return null
- WordPress custom taxonomy check box to dropdown
- How to create a backend for a custom theme?
- WordPress class, using add_action to call member function does not work
- Redirect to another page using contact form 7? [closed]
- Apply styles to blockquote element with the WYSIWYG editor
- Call to undefined function is_home() or any conditional tags
- Create fixed static pages
- Adding tables to dashboard pages programmatically?
- Change the behaviour of a button
- Redirection from a specific page for users logged in but not with membership
- How to hide/remvoe unnecessary field/section in post edit section ( Dashboard )
- Redirect theme directory to plugin theme directory
- Post Pagination does not working on WP-Query
- Caption Shortcode: what filter to change the image size?
- Managing Custom Designed Content
- How can I add recent posts to menu like mashable
- Create and style menu
- append code after the_content not working
- Enqueue scripts in footer
- Is It Always a Best Practice to Decouple the Frontend from the Admin Area When Developing a WordPress Application?
- override pluggable.php functions
- Retrieve contents/page names of various pages for use in a plugin
- Namespaced action and filter tags
- Can wp_list_comments output into variable?
- is user logged in not working
- Two functions utilizing registration_errors filter
- Set WordPress Default Template
- Creating a Link Text like Submit Button in Admin Page
- Beginner advice
- Change the ‘published on’ text?
- Is there a Filter that I can use to filter the tags before they are inserted in to the database?
- WordPress is automatically linking plain text email addresses
- How to render a time-of-day string like ’16:42′ with a site’s chosen time format?
- Are block templates incompatible with serialize_blocks?
- best practice for query string values – get_query_var always empty for my value supplied in query string
- How to filter users list on user_status field with get_users()
- Override class inside $atts shortcode_atts in WordPress
- Get Current Menu Location inside Nav_Walker
- How to get current post user id
- creating custom function to log actions in plugin
- Problems with: manage_${post_type}_posts_columns
- How To Change Logout Screen Title
- SQL query for custom taxonomy slugs
- add_rewrite_rule works in themes function php but when moved into plugin it stops working
- Tried in different ways but sidebar not working?
- Can Page Templates be Applied to Archive and Post Templates?
- Maximum lifetime for nonce
- Add code inside specific wordpress standard function
- Short code not working in boostrap modal dont no why?
- Where can i find wordpress auto update code flows?
- is_customize_preview() like function to check if Customizer “Live Preview” in JavaScript
- Is there a way to list all actions registered by a plugin or theme?
- Howto: Use Custom Post Types as Submenu Items in Admin
- Check for template part, else filter content
- Adding option to Gallery shortcode
- correct way to call javascript into hook function
- Is there some way to provide the user a list of existing content in a CPT
- Should I use add_filter for functions in function.php of the theme?
- Change the look and feel of admin pages
- How to Debug: My Plugin Interferes With My Theme
- Pass variable to hook. Its possible?
- Why doesn’t my simple the_title filter get applied?
- Theme Install using a Custom Repository
- How to filter the_content() & include content from template
- Extending theme PHP class in plugin
- How can I remove a function that has been added to wordpress with add_filter?
- Adding rewrite rule dynamically
- How to access noticeOperations from withNotices
- How to hook a custom user function to a wordpress core ajax action?
- Display post lists in 2nd paragraph
- How to change the hover content of a specific menu item on WordPress?
- How do I add custom bulk actions to multiple custom post types?
- Elementor custom Query with ACF fields to show matching woocommerce products custom fields
- how to search users by ajax live search
- WP Gutenberg Blocks – How to limit first/root blocks
- Prefixing plugin hooks (actions/filters) with a wrapper class or functions
- what is the best practice to add new field to an api route
- Replace youtube embed in wordpress
- How to get boolean value from register_meta properly?
- what is the difference between these phares?
- Form doesnt save to database
- Notice: Trying to get property ‘term_id’ of non-object
- Remove unwanted elements for a wp_nav_menu
- Can’t get woocommerce_get_price_html to work [closed]