Archived topic
Turn off permalinks on post title
3 replies · Started by Keith Messinger on February 11, 2019
Hello. I would like to turn off the permalinks on the post titles. Can I use the child theme for that? I am using 2.2.2
Thanks,
Keith
Hi there,
Not quite sure if I understand.
The theme itself doesn't actually handle permalinks. It's all handled by WordPress:
https://codex.wordpress.org/Settings_Permalinks_Screen
Let me know if this helps :)
Thanks Leo. I forgot. That is a feature of WP.
Your blog post titles link to the single post, which is done by GP.
To remove that, you would need a child theme.
An easy workaround is to do something like this though:
h2.entry-title a {
pointer-events: none;
}
Not perfect, as the link still exists, but it will prevent people from clicking it.
If you need help with the child theme just let me know :)