Nemůžete po updatu na poslední verzi WorPressu najít výběr na šablonu stránky v záložce stránky? Důvody jsou dva:
- Je přesunutá do samostatné záložky „Šablony“
- Vaše šablona je „nepodporuje“ – přidejte následující kus kódu a už je zase uvidíte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php // don't copy this line | |
/** | |
* Add page template support | |
* @return void | |
* @author Karolína Vyskočilová (https://kybernaut.cz) | |
* @see https://wordpress.org/support/topic/page-templates-missing-from-page-attributes-after-5-8/ | |
* @updated 2021-08-19 | |
*/ | |
function add_page_template_support_missing_in_WP_5_8() | |
{ | |
add_theme_support('block-templates'); | |
} | |
add_action('after_setup_theme', 'add_page_template_support_missing_in_WP_5_8'); |