I’m getting Georgia or Georgia-like on my blog when I don’t want it wondering if wp-includes has been modified by a plugin

How to use google fonts in your theme: Go to google fonts and find your font. Once your have found your font click on the second icon (paper -> arrow) that says “Quick Use” when you mouse over. You now have a page that shows how to use your font. Look at section 3 of … Read more

Strict Standards: Declaration of description_walker::start_el() and warning [duplicate]

Not sure you’re asking for error with Walker_Nav_Menu::start_el() or Walker_Nav_Menu::start_lvl(). But you must specify all arguments as default in the Walker_Nav_Menu class in your derived classes. E.g: class description_walker extends Walker_Nav_Menu { /** * Starts the list before the elements are added. * * @see Walker::start_lvl() */ public function start_lvl(&$output, $depth = 0, $args = … Read more

Twenty Fourteen theme and the page-templates folder

The actual query for a Theme’s page templates happens in wp_get_theme()->get_page_templates() (source), which in turn calls get_files() (source). The magic happens here: $files = (array) $this->get_files( ‘php’, 1 ); The args for get_files() are: function get_files( $type = null, $depth = 0, $search_parent = false ) {} So, when WordPress searches the Theme for PHP … Read more