Hi ZensunniWanderer
For example
add_action('raindrops_prepend_loop','extend_title_for_blog_page' );
function extend_title_for_blog_page() {
if( is_home( ) ) {
echo '<h2 class="my-custom-title">Hello World</h2>';
}
}
Please apply style yourself.
Hints of find Action hooks.
wp-config.php
define('WP_DEBUG',true);
https://codex.wordpress.org/Debugging_in_WordPress
and
Dashboad / Appearance / Customize
Advanced ,
Developer Settings set ‘show’
Display action hooks or template filename for automate template insert
Note: When finished, do not forget to return the debug mode to the original,and Advanced set hide.
Thank you
Hi Nobita,
Thank you for the advice. I will have a look at this in the next couple of days and report back.
Update:
I resolved the problem by hard coding <h1>’page title'</h1> into the index.php and single.php files.
I insert <div class=”posts_page_title”><h1>NEWS</h1></div> above the following code:
<div id=”yui-main” class=”<?php raindrops_dinamic_class( ‘yui-main’,true ); ?>”>
and styled with css (posts_page_title class).
Thanks for all your help!