WordPress Code List
I collected the parameters I used while creating a WordPress theme on one page. This content contains codes suitable for general use and includes all the necessary general codes when creating a theme. To help others as a WordPress lover… Title parameter <?php global $page, $paged; bloginfo( 'name' ); wp_title( '»', true, 'left' ); $site_description = get_bloginfo( 'description', 'display' ); if ( $site_description && ( is_home() || is_front_page() ) ) echo " » $site_description"; if ( $paged -->= 2 || $page >= 2 ) echo ' » ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) );... Devamını Oku