Merhabalar arkadaşlar,

Kullanmak istediğim tema, ana sayfayı Sayfa olarak oluşturup daha sonra sabit sayfadan seçtiriyor.

All in seo kurup title ve diğer ayarları girdiğimde diğer ayarları görüyor. Fakat ana sayfa title değiştirmiyor. Bu problemi nasıl giderebilirim ?

Title olarak Products yazıyor. Ben all in seo eklentisine girdiğim title çıkmasını istiyorum.

Header.php kodu

/**
* The Header for our theme.
*
* Displays all of the section and everything up till

*
* @package web2feel
* @since web2feel 1.0
*/
?>
>



<?php <br/> /* <br/> * Print the <title> tag based on what is being viewed. <br/> */ <br/> global $page, $paged; <br/> <br/> wp_title( '|', true, 'right' ); <br/> <br/> // Add the blog name. <br/> bloginfo( 'name' ); <br/> <br/> // Add the blog description for the home/front page. <br/> $site_description = get_bloginfo( 'description', 'display' ); <br/> if ( $site_description && ( is_home() || is_front_page() ) ) <br/> echo " | $site_description"; <br/> <br/> // Add a page number if necessary: <br/> if ( $paged >= 2 || $page >= 2 ) <br/> echo ' | ' . sprintf( __( 'Page %s', 'web2feel' ), max( $paged, $page ) ); <br/> <br/> ?>









>