Custom Twenty Thirteen fonts?
If you’ve removed the twentythirteen fonts you can add new ones via your styles.css file using @font-face.
If you’ve removed the twentythirteen fonts you can add new ones via your styles.css file using @font-face.
In TwentyThirteen, there are many files, their names’re started with content: content.php content-none.php content-aside.php content-audio.php content-chat.php content-gallery.php content-image.php content-link.php content-quote.php content-status.php content-video.php Among them, except the first two, all the others are for different post types, and you can understand their usages from their names. The 2nd one, content-none.php is used to display apology texts, … Read more
You should be using get_the_date, rather than the_time (which will just echo the value). And always quote string arguments. $date = sprintf( ‘<span class=”date”><a href=”https://wordpress.stackexchange.com/questions/132268/%s” title=”https://wordpress.stackexchange.com/questions/132268/%s” rel=”bookmark”><time class=”entry-date” datetime=”https://wordpress.stackexchange.com/questions/132268/%s”><span class=”date–day”>%s</span><span class=”date–month”>%s</span><span class=”date–year”>%s</span></time></a></span>’, esc_url( get_permalink() ), esc_attr( sprintf( __( ‘Permalink to %s’, ‘lyod’ ), the_title_attribute( ‘echo=0’ ) ) ), esc_attr( get_the_date( ‘c’ ) ), esc_attr( get_the_date( … Read more
Tested on a Twenty Thirteen & Twenty Twelve child theme. Try this from your child themes functions.php file. You can add the image using various methods. add_filter( ‘wp_nav_menu_items’, ‘wpsites_add_logo_nav_menu’, 10, 2 ); function wpsites_add_logo_nav_menu( $menu, stdClass $args ){ if ( ‘primary’ != $args->theme_location ) return $menu; $menu .= ‘<nav class=”nav-image”><img src=”‘ . get_stylesheet_directory_uri() . ‘/images/header.png” … Read more
Themes bundled with WordPress are licensed under “GPLv2 or any later version” in full (both code and assets). You can reuse and resell that code, as long as you abide by the GPL license, effectively meaning — resulting product’s code (and assets if you use them) must be under either of: GPLv2 or later GPLv2 … Read more