Hello, this is normal behavior in PokaTheme v4, we decided that each page should just show its content.
So if you want to show the page title, you have to enter it in the page content, too.
If you want to automatically show up, you have to add the following PHP snippet, using a plugin like Code Snippets, or using your child theme.
function poka_child_642a7ea3f18ba( $content ) {
if ( is_singular( array( 'page' ) ) ) {
$add_content = '<h1>' . get_the_title() . '</h1>';
$add_content .= $content;
return $add_content;
} else {
return $content;
}
}
add_filter( 'the_content', 'poka_child_642a7ea3f18ba' );
-
This reply was modified 1 year ago by admin.