This really depends on your theme. Somewhere in its template files the title is generated, including the anchors. This differs per theme, but you’ll have to look for something like this:
echo '<a href="'. get_permalink . '">' . get_the_title . '</a>';
If it is hard coded like this, you’ll have to choice but to override it by making a child theme, copying the template file where you found this and replace it with
if (is_front_page) echo get_the_title;
else echo '<a href="'. get_permalink . '">' . get_the_title . '</a>';
Note that, depending on the theme, things may be a lot more complicated than this.
Related Posts:
- create-guten-block in wordpress theme?
- How to create a template for a post in Query Loop block?
- What’s the difference between home.php and index.php?
- Custom single template for a specific category
- How to insert a logo in the header?
- How to move page templates to custom folder?
- Proper, exhaustive documentation for wp.editor etc
- Page template in two level deep folder
- Edit srcset and sizes attributes in Gutenberg image, cover and gallery – blocks
- Is it possible to manipulate the list of page templates?
- Different wordpress 404 template for different post type [duplicate]
- How does WordPress decide what template to use as frontpage
- How can I get wp_head() as a string instead of echoing it?
- Why does my short code get executed before other content?
- Add colors to existing color palette without replacing it
- Retrieve the template directory URI via global or get_template_directory_uri() every time?
- How can I see what template parts are being called for rendering the viewable page?
- Add a preview to a WordPress Control Panel
- Add a #hash to the links in my custom menu
- Problems with Layout inherit in theme.json
- Can you filter posts by meta key with the getEntitityRecords selector?
- How to Handle CSS for Multiple Header header.php Files?
- How to load different CSS in different Header?
- Static Front Page problem
- WP Gutenberg custom block – generate theme colors from SASS and use them in the inspector and php callback
- Returning Variables back into a template
- create blocks programmtically on theme activation
- Can not Remove Archives and Meta from Sidebar
- How to override BuddyPress 3.0 bp-nouveau theme files?
- Setting hero/splash section as a blog post
- Where is the correct place(s) in twentysixteen’s header.php to add a Google webfont?
- Can I customize any WordPress parent block-based theme template files by child theme like a parent classic theme?
- How to support Lazy Loading Assets in a WordPress Theme?
- How to retrieve an image from a post and display it before excerpt of a post? [duplicate]
- Any tag pagination page (except the 1st page) loads index.php template instead of tag.php
- How do I update WooCommerce template files in my theme? [closed]
- WordPress Gutenberg Theme: Structure, Hierarchy and Custom Templates
- Gutenberg Reusable Block as part of WordPress Theme page
- New template, where to place CSS?
- Check if password protected post is visible
- get_query_var() and permalinks
- What is the best way to handle multiple calls to get_template_directory_uri() and similar functions?
- Toggle Sidebar Display
- Add theme templates for child categories into the template hierarchy
- Move theme templates to subfolder without losing page associations
- Where can I access my custom page template?
- Theme development question regarding layouts
- Why are theme templates organized as multiple point of entry PHP files instead of reusing your theme’s index.php?
- Custom button block doesn’t work
- WordPress Theme Development: How to redirect templates the right way?
- Disable front-page.php template
- How to float an image in Gutenberg
- Gutenberg – editor-font-sizes in functions not working
- How do I create a custom partial / template?
- Change the template of multiple multisite pages at the same time
- Load child template based on parent
- Can’t select my block by clicking on it
- Which file handles the block latest posts, I want to examine excerpt handling
- Override template file i subfolders
- Single Page theme [closed]
- Single page site with history.js
- Do i need to keep all the default WP templates files in a theme?
- How can I detect hierarchal relationships beyond children (grandchild, great-grandchild, etc)?
- What VSCode extensions are there for working with block themes? [closed]
- What is the “correct” way to add hooks or similar PHP behavior to a blocktheme?
- Not able to select width of blocks inside of cover block
- How to check if a WordPress core block is active in sidebar
- how to display search term in the template full site editor
- gutenberg add classes to list items
- How do you replace content generated by custom fields with custom blocks in Block Editor?
- Sort wp_query by sum of two meta fields
- How to override p2 breathe theme plugin in content template file?
- Move default page templates to sub directory
- What can I use for small text when converting to WordPress?
- Custom Blocks as part of a theme
- Where to place template files?
- Is there any tool to find lines of codes responsible to generate front-end HTML elements?
- How do I get the trackback count of a post in wordpress without writing an SQL query?
- How to wrap all titles generated by Gutenberg “Heading” block with tag
- Load sidebar template just once to prevent multiple animations
- Replace single_template filter with what for default posts?
- Need help with adding templates (archives and sitemap) to WordPress child theme
- Template for landing pages
- Unique design inside a specific category’s url
- How to seperate static phrases from template files in custom theme?
- Broken theme, template is missing
- How to add menù section to my WordPress template?
- Post and page content not displaying in search results
- How to add InnerBlock multiple times in the same block
- Moving post title down the page / Removing a block from a post
- Why still output /wp-content/themes/twentynineteen?
- HTML block gutenberg templates
- Gutenberg theme development: how to add “headers” option under styles > colors > elements?
- How to add custom meta box when you have a custom page template file
- Password protect a custom template
- Templates dropdown not appearing using _s theme (underscores)
- Shortcode call not working in WP Template
- Load different single.php templates according to post layout selection
- Create theme for mobile phones and tablets only?
- Confused by the behaviour of “front page” / “home” templates