Vytvoření a úpravy šablony založené na Twenty Eleven

„Vytvoření odvozené (child) šablony »“:http://wp.tutsplus.com/tutorials/theme-development/creating-a-simple-child-theme-using-twenty-eleven/

Změna stylopisu – barva, písmo, velikost nadpisů, popisky, komentářů, postranní lišty apod.

„[* http://allaboutbasic.files.wordpress.com/2011/06/twenty-eleven1.png?w=630&h=376 *]“:http://allaboutbasic.com/2011/06/15/wordpress-com-theme-twenty-eleven-css-style-sheet-modification-change-site-titledescriptionpost-titlecommentsmenussidebar-and-more/

„Více zde »“:http://allaboutbasic.com/2011/06/15/wordpress-com-theme-twenty-eleven-css-style-sheet-modification-change-site-titledescriptionpost-titlecommentsmenussidebar-and-more/

„Digging Into Twenty Eleven »“:http://theme.fm/2011/07/theme-review-digging-into-twenty-eleven-597/

„Replace/Remove Default Header Image Twenty Eleven Theme »“:http://wpti.ps/functions/replace-remove-header-image-twenty-eleven-theme/

„Sidebar on Single Posts and Pages »“:http://www.transformationpowertools.com/wordpress/twenty-eleven-sidebar-on-single-posts-and-pages

„Adding a Narrow Sidebar on Each Side of TwentyEleven Single Post View »“:http://voodoopress.com/2011/07/adding-a-narrow-sidebar-on-each-side-of-twentyeleven-single-post-view/

„Plugin pro různé změny layoutu a designu Twenty Eleven »“:http://wordpress.org/extend/plugins/twenty-eleven-theme-extensions/
„Twenty Eleven Theme Extensions Plugin »“:http://wordpress.org/extend/plugins/twenty-eleven-theme-extensions/

„Plugin pro 3-sloupcové varianty Twenty Eleven »“:http://zeaks.org/other-stuff/three-column-twenty-eleven-update/

„Jak přidat logo do Twenty Eleven »“:http://zeaks.org/code-snippets/how-to-add-a-logo-to-twenty-eleven-theme/

„Logo a nadpis v Twenty Eleven »“:http://www.transformationpowertools.com/wordpress/logo-and-site-title-twenty-eleven

„How to Override Theme Functions »“:http://venutip.com/content/right-way-override-theme-functions

1. Copy (in full) the function you want to override from the parent theme.
2. Paste it into functions.php in the root of your child theme’s folder. If functions.php doesn’t exist, create it.
3. Rename the function from parent_theme_function to child_theme_function.
4. Deactivate the parent function.
5. Activate the child function.

/—code php
// Removes thematic_blogtitle from the thematic_header phase
function remove_thematic_actions() {
remove_action(‚thematic_header‘,’thematic_blogtitle‘,3);
}
// Call ‚remove_thematic_actions‘ during WP initialization
add_action(‚init‘,’remove_thematic_actions‘);

// Add our custom function to the ‚thematic_header‘ phase
add_action(‚thematic_header‘,’fancy_theme_blogtitle‘, 3);
\—