Archived topic
Support on summary and entry-title
3 replies · Started by An Nguyen on October 23, 2019
Hi,
I wanna customise after summary and entry-title by using some shortcode.
1/ I wanna replace “...” after summary with useful meaning word with my shortcode.
2/In entry-title, HTML markup including shortcode that I’m expecting that is
<entry-header>
<entry-title>
<h>The market <span class=“title-custom”>[shortcode]</span></h>
I tried with after-entry-title but the [scode] adding below <h>. I want it inside <h> and after title-text.
Can we add these shortcodes via using php snippet?
Hi there,
Unfortunately, it's not really possible to append something to the content title by default. This is being WordPress uses the same filter (the_title) in multiple places (menus, widget titles, content title), and it's not possible to target the content title specifically.
If you needed to do this, you would have to create a custom page template and manually insert your shortcode into it: https://developer.wordpress.org/themes/template-files-section/page-template-files/
Thanks Tom
No problem :)