Setting the page title in a plugin, but not outside my plugin
1) I think I solved it: check if the content contains my shortcode: a) So set up in my top (outer) plugin file with: add_filter( ‘pre_get_document_title’, ‘dwnz_filter_pagetitle’, 20 ); b) plus later on in same file: function dwnz_filter_pagetitle ($title) { // get_post even works in my case when I am expecting a page, not a … Read more