Hi. I want to show the titles of the article in Menu PRO when I am inside the article like in this wp theme: https://dev.librosfamosos.com/bye-virginity-navidad-virgen-escrito-por-jacqueline-m-q-libros-de-escritores-famosos/
This shortcode work for my, but am not sure if this is the best way.
I add the below code to functions.php file of child theme.
function page_title_sc( ){
return get_the_title();
}
add_shortcode( ‘page_title’, ‘page_title_sc’ );
After in the PRO Header i use [page_title] in “content box”, and work.