hello blogger's I discovered that Mobile Press plugins is not working well with YOAST SEO, your first post I'll appeared as Tittle on your HOMEPAGE....
Now get the solution to this....
go to your
host > cpanel > File Manager > public _html > wp-content > plugins > Mobile Press > themes > Default > Header > Default header.php Look For This Code
<title>
<?php wp_title('«', true, 'right'); bloginfo('name'); ?></title>
so paste this code Before The First Code I Drop.
<title>
<?php
global $query_string;
if ( is_home() )
bloginfo( 'name' );
if ( get_search_query() )
echo 'Results for: "' . get_search_query() .'"';
if ( is_month() )
the_time('F Y');
if ( is_category() )
single_cat_title();
if ( is_single() )
the_title();
if ( is_page() )
the_title();
if ( is_tag() )
single_tag_title();
if ( is_404() )
echo 'Page Not Found!';
?>
</title>
Note: Don't Use OPERA to copy. so to avoid error please do backup... and drop your comment for any help...