Fatih Toprak adlı üyeden alıntı

bunu yapmanız için temanızın ana syafasını niteleyen, index.php / home.php gibi sayfalarınzı varsa bunalrı paylaşmanız gerekl ki, reklam içeriklerinizi saydırarak alıp aralarına istediğimizi bastıralım :)


index.php












if ( is_search() )
printf( __('Search Results for – "%s"', 'frontier'), get_search_query() );
elseif ( is_day() )
printf( __('Date – %s', 'frontier'), get_the_date() );
elseif ( is_month() )
printf( __('Month – %s', 'frontier'), get_the_date( 'F Y' ) );
elseif ( is_year() )
printf( __('Year – %s', 'frontier'), get_the_date( 'Y' ) );
elseif ( is_category() || is_tag() )
echo '' . single_cat_title( '', false ) . '';
?>
























$frontier_nothing_found_content = '

' . __('Nothing Found', 'frontier') . '

';
$frontier_nothing_found_content .= '

' . __('Try a new keyword.', 'frontier') . '

';
$frontier_nothing_found_content .= get_search_form( false );
echo apply_filters( 'frontier_nothing_found_content', $frontier_nothing_found_content );
?>













$post_nav_blog = '';

if ( !is_search() ) {
$post_nav_blog .= '';
$post_nav_blog .= '';
}
else {
$post_nav_blog .= '';
$post_nav_blog .= '';
}

echo apply_filters( 'frontier_post_nav_blog', $post_nav_blog );
?>











switch ( frontier_option('column_layout', 'col-cs') ) {
case 'col-sc' :
get_sidebar('left');
break;

case 'col-cs' :
get_sidebar('right');
break;

case 'col-ssc' :
case 'col-scs' :
case 'col-css' :
get_sidebar('left');
get_sidebar('right');
break;
}
?>