I like the plugin, but wish teh blank space created by eliminating the page title was removed by shifting the underlying text up. Can this be added?
I like the plugin, but wish teh blank space created by eliminating the page title was removed by shifting the underlying text up. Can this be added?
Hello,
the plugin from WordPress just gets the title and replace it with an empty string. To the environment of the title (for example, the <H1> tags or DIV Container) the plugin has no effect. You'd have to query in your theme. There you have you code like
<h1> <?php the_title();?> </ h1>
which you can change in
<?php
$title = get_the_title();
if ( $title == "" ) { ?>
<h1> <?php the_title(); ?> </h1>
<?php } ?>
Then the H1 is only printed if the title is not disabled.
Frank
Ups,
the correct Code ist
<?php
$title = get_the_title();
if ( $title != "" ) { ?>
<h1> <?php the_title(); ?> </h1>
<?php } ?>
Frank
You must log in to post.