functions.php 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760
  1. <?php
  2. /**
  3. * Twenty Twenty functions and definitions
  4. *
  5. * @link https://developer.wordpress.org/themes/basics/theme-functions/
  6. *
  7. * @package WordPress
  8. * @subpackage Twenty_Twenty
  9. * @since Twenty Twenty 1.0
  10. */
  11. /**
  12. * Table of Contents:
  13. * Theme Support
  14. * Required Files
  15. * Register Styles
  16. * Register Scripts
  17. * Register Menus
  18. * Custom Logo
  19. * WP Body Open
  20. * Register Sidebars
  21. * Enqueue Block Editor Assets
  22. * Enqueue Classic Editor Styles
  23. * Block Editor Settings
  24. */
  25. /**
  26. * Sets up theme defaults and registers support for various WordPress features.
  27. *
  28. * Note that this function is hooked into the after_setup_theme hook, which
  29. * runs before the init hook. The init hook is too late for some features, such
  30. * as indicating support for post thumbnails.
  31. */
  32. function twentytwenty_theme_support() {
  33. // Add default posts and comments RSS feed links to head.
  34. add_theme_support( 'automatic-feed-links' );
  35. // Custom background color.
  36. add_theme_support(
  37. 'custom-background',
  38. array(
  39. 'default-color' => 'f5efe0',
  40. )
  41. );
  42. // Set content-width.
  43. global $content_width;
  44. if ( ! isset( $content_width ) ) {
  45. $content_width = 580;
  46. }
  47. /*
  48. * Enable support for Post Thumbnails on posts and pages.
  49. *
  50. * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
  51. */
  52. add_theme_support( 'post-thumbnails' );
  53. // Set post thumbnail size.
  54. set_post_thumbnail_size( 1200, 9999 );
  55. // Add custom image size used in Cover Template.
  56. add_image_size( 'twentytwenty-fullscreen', 1980, 9999 );
  57. // Custom logo.
  58. $logo_width = 120;
  59. $logo_height = 90;
  60. // If the retina setting is active, double the recommended width and height.
  61. if ( get_theme_mod( 'retina_logo', false ) ) {
  62. $logo_width = floor( $logo_width * 2 );
  63. $logo_height = floor( $logo_height * 2 );
  64. }
  65. add_theme_support(
  66. 'custom-logo',
  67. array(
  68. 'height' => $logo_height,
  69. 'width' => $logo_width,
  70. 'flex-height' => true,
  71. 'flex-width' => true,
  72. )
  73. );
  74. /*
  75. * Let WordPress manage the document title.
  76. * By adding theme support, we declare that this theme does not use a
  77. * hard-coded <title> tag in the document head, and expect WordPress to
  78. * provide it for us.
  79. */
  80. add_theme_support( 'title-tag' );
  81. /*
  82. * Switch default core markup for search form, comment form, and comments
  83. * to output valid HTML5.
  84. */
  85. add_theme_support(
  86. 'html5',
  87. array(
  88. 'search-form',
  89. 'comment-form',
  90. 'comment-list',
  91. 'gallery',
  92. 'caption',
  93. 'script',
  94. 'style',
  95. )
  96. );
  97. /*
  98. * Make theme available for translation.
  99. * Translations can be filed in the /languages/ directory.
  100. * If you're building a theme based on Twenty Twenty, use a find and replace
  101. * to change 'twentytwenty' to the name of your theme in all the template files.
  102. */
  103. load_theme_textdomain( 'twentytwenty' );
  104. // Add support for full and wide align images.
  105. add_theme_support( 'align-wide' );
  106. // Add support for responsive embeds.
  107. add_theme_support( 'responsive-embeds' );
  108. /*
  109. * Adds starter content to highlight the theme on fresh sites.
  110. * This is done conditionally to avoid loading the starter content on every
  111. * page load, as it is a one-off operation only needed once in the customizer.
  112. */
  113. if ( is_customize_preview() ) {
  114. require get_template_directory() . '/inc/starter-content.php';
  115. add_theme_support( 'starter-content', twentytwenty_get_starter_content() );
  116. }
  117. // Add theme support for selective refresh for widgets.
  118. add_theme_support( 'customize-selective-refresh-widgets' );
  119. /*
  120. * Adds `async` and `defer` support for scripts registered or enqueued
  121. * by the theme.
  122. */
  123. $loader = new TwentyTwenty_Script_Loader();
  124. add_filter( 'script_loader_tag', array( $loader, 'filter_script_loader_tag' ), 10, 2 );
  125. }
  126. add_action( 'after_setup_theme', 'twentytwenty_theme_support' );
  127. /**
  128. * REQUIRED FILES
  129. * Include required files.
  130. */
  131. require get_template_directory() . '/inc/template-tags.php';
  132. // Handle SVG icons.
  133. require get_template_directory() . '/classes/class-twentytwenty-svg-icons.php';
  134. require get_template_directory() . '/inc/svg-icons.php';
  135. // Handle Customizer settings.
  136. require get_template_directory() . '/classes/class-twentytwenty-customize.php';
  137. // Require Separator Control class.
  138. require get_template_directory() . '/classes/class-twentytwenty-separator-control.php';
  139. // Custom comment walker.
  140. require get_template_directory() . '/classes/class-twentytwenty-walker-comment.php';
  141. // Custom page walker.
  142. require get_template_directory() . '/classes/class-twentytwenty-walker-page.php';
  143. // Custom script loader class.
  144. require get_template_directory() . '/classes/class-twentytwenty-script-loader.php';
  145. // Non-latin language handling.
  146. require get_template_directory() . '/classes/class-twentytwenty-non-latin-languages.php';
  147. // Custom CSS.
  148. require get_template_directory() . '/inc/custom-css.php';
  149. /**
  150. * Register and Enqueue Styles.
  151. */
  152. function twentytwenty_register_styles() {
  153. $theme_version = wp_get_theme()->get( 'Version' );
  154. wp_enqueue_style( 'twentytwenty-style', get_stylesheet_uri(), array(), $theme_version );
  155. wp_style_add_data( 'twentytwenty-style', 'rtl', 'replace' );
  156. // Add output of Customizer settings as inline style.
  157. wp_add_inline_style( 'twentytwenty-style', twentytwenty_get_customizer_css( 'front-end' ) );
  158. // Add print CSS.
  159. wp_enqueue_style( 'twentytwenty-print-style', get_template_directory_uri() . '/print.css', null, $theme_version, 'print' );
  160. }
  161. add_action( 'wp_enqueue_scripts', 'twentytwenty_register_styles' );
  162. /**
  163. * Register and Enqueue Scripts.
  164. */
  165. function twentytwenty_register_scripts() {
  166. $theme_version = wp_get_theme()->get( 'Version' );
  167. if ( ( ! is_admin() ) && is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
  168. wp_enqueue_script( 'comment-reply' );
  169. }
  170. wp_enqueue_script( 'twentytwenty-js', get_template_directory_uri() . '/assets/js/index.js', array(), $theme_version, false );
  171. wp_script_add_data( 'twentytwenty-js', 'async', true );
  172. }
  173. add_action( 'wp_enqueue_scripts', 'twentytwenty_register_scripts' );
  174. /**
  175. * Fix skip link focus in IE11.
  176. *
  177. * This does not enqueue the script because it is tiny and because it is only for IE11,
  178. * thus it does not warrant having an entire dedicated blocking script being loaded.
  179. *
  180. * @link https://git.io/vWdr2
  181. */
  182. function twentytwenty_skip_link_focus_fix() {
  183. // The following is minified via `terser --compress --mangle -- assets/js/skip-link-focus-fix.js`.
  184. ?>
  185. <script>
  186. /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1);
  187. </script>
  188. <?php
  189. }
  190. add_action( 'wp_print_footer_scripts', 'twentytwenty_skip_link_focus_fix' );
  191. /** Enqueue non-latin language styles
  192. *
  193. * @since Twenty Twenty 1.0
  194. *
  195. * @return void
  196. */
  197. function twentytwenty_non_latin_languages() {
  198. $custom_css = TwentyTwenty_Non_Latin_Languages::get_non_latin_css( 'front-end' );
  199. if ( $custom_css ) {
  200. wp_add_inline_style( 'twentytwenty-style', $custom_css );
  201. }
  202. }
  203. add_action( 'wp_enqueue_scripts', 'twentytwenty_non_latin_languages' );
  204. /**
  205. * Register navigation menus uses wp_nav_menu in five places.
  206. */
  207. function twentytwenty_menus() {
  208. $locations = array(
  209. 'primary' => __( 'Desktop Horizontal Menu', 'twentytwenty' ),
  210. 'expanded' => __( 'Desktop Expanded Menu', 'twentytwenty' ),
  211. 'mobile' => __( 'Mobile Menu', 'twentytwenty' ),
  212. 'footer' => __( 'Footer Menu', 'twentytwenty' ),
  213. 'social' => __( 'Social Menu', 'twentytwenty' ),
  214. );
  215. register_nav_menus( $locations );
  216. }
  217. add_action( 'init', 'twentytwenty_menus' );
  218. /**
  219. * Get the information about the logo.
  220. *
  221. * @param string $html The HTML output from get_custom_logo (core function).
  222. *
  223. * @return string $html
  224. */
  225. function twentytwenty_get_custom_logo( $html ) {
  226. $logo_id = get_theme_mod( 'custom_logo' );
  227. if ( ! $logo_id ) {
  228. return $html;
  229. }
  230. $logo = wp_get_attachment_image_src( $logo_id, 'full' );
  231. if ( $logo ) {
  232. // For clarity.
  233. $logo_width = esc_attr( $logo[1] );
  234. $logo_height = esc_attr( $logo[2] );
  235. // If the retina logo setting is active, reduce the width/height by half.
  236. if ( get_theme_mod( 'retina_logo', false ) ) {
  237. $logo_width = floor( $logo_width / 2 );
  238. $logo_height = floor( $logo_height / 2 );
  239. $search = array(
  240. '/width=\"\d+\"/iU',
  241. '/height=\"\d+\"/iU',
  242. );
  243. $replace = array(
  244. "width=\"{$logo_width}\"",
  245. "height=\"{$logo_height}\"",
  246. );
  247. // Add a style attribute with the height, or append the height to the style attribute if the style attribute already exists.
  248. if ( strpos( $html, ' style=' ) === false ) {
  249. $search[] = '/(src=)/';
  250. $replace[] = "style=\"height: {$logo_height}px;\" src=";
  251. } else {
  252. $search[] = '/(style="[^"]*)/';
  253. $replace[] = "$1 height: {$logo_height}px;";
  254. }
  255. $html = preg_replace( $search, $replace, $html );
  256. }
  257. }
  258. return $html;
  259. }
  260. add_filter( 'get_custom_logo', 'twentytwenty_get_custom_logo' );
  261. if ( ! function_exists( 'wp_body_open' ) ) {
  262. /**
  263. * Shim for wp_body_open, ensuring backward compatibility with versions of WordPress older than 5.2.
  264. */
  265. function wp_body_open() {
  266. do_action( 'wp_body_open' );
  267. }
  268. }
  269. /**
  270. * Include a skip to content link at the top of the page so that users can bypass the menu.
  271. */
  272. function twentytwenty_skip_link() {
  273. echo '<a class="skip-link screen-reader-text" href="#site-content">' . __( 'Skip to the content', 'twentytwenty' ) . '</a>';
  274. }
  275. add_action( 'wp_body_open', 'twentytwenty_skip_link', 5 );
  276. /**
  277. * Register widget areas.
  278. *
  279. * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
  280. */
  281. function twentytwenty_sidebar_registration() {
  282. // Arguments used in all register_sidebar() calls.
  283. $shared_args = array(
  284. 'before_title' => '<h2 class="widget-title subheading heading-size-3">',
  285. 'after_title' => '</h2>',
  286. 'before_widget' => '<div class="widget %2$s"><div class="widget-content">',
  287. 'after_widget' => '</div></div>',
  288. );
  289. // Footer #1.
  290. register_sidebar(
  291. array_merge(
  292. $shared_args,
  293. array(
  294. 'name' => __( 'Footer #1', 'twentytwenty' ),
  295. 'id' => 'sidebar-1',
  296. 'description' => __( 'Widgets in this area will be displayed in the first column in the footer.', 'twentytwenty' ),
  297. )
  298. )
  299. );
  300. // Footer #2.
  301. register_sidebar(
  302. array_merge(
  303. $shared_args,
  304. array(
  305. 'name' => __( 'Footer #2', 'twentytwenty' ),
  306. 'id' => 'sidebar-2',
  307. 'description' => __( 'Widgets in this area will be displayed in the second column in the footer.', 'twentytwenty' ),
  308. )
  309. )
  310. );
  311. }
  312. add_action( 'widgets_init', 'twentytwenty_sidebar_registration' );
  313. /**
  314. * Enqueue supplemental block editor styles.
  315. */
  316. function twentytwenty_block_editor_styles() {
  317. $css_dependencies = array();
  318. // Enqueue the editor styles.
  319. wp_enqueue_style( 'twentytwenty-block-editor-styles', get_theme_file_uri( '/assets/css/editor-style-block.css' ), $css_dependencies, wp_get_theme()->get( 'Version' ), 'all' );
  320. wp_style_add_data( 'twentytwenty-block-editor-styles', 'rtl', 'replace' );
  321. // Add inline style from the Customizer.
  322. wp_add_inline_style( 'twentytwenty-block-editor-styles', twentytwenty_get_customizer_css( 'block-editor' ) );
  323. // Add inline style for non-latin fonts.
  324. wp_add_inline_style( 'twentytwenty-block-editor-styles', TwentyTwenty_Non_Latin_Languages::get_non_latin_css( 'block-editor' ) );
  325. // Enqueue the editor script.
  326. wp_enqueue_script( 'twentytwenty-block-editor-script', get_theme_file_uri( '/assets/js/editor-script-block.js' ), array( 'wp-blocks', 'wp-dom' ), wp_get_theme()->get( 'Version' ), true );
  327. }
  328. add_action( 'enqueue_block_editor_assets', 'twentytwenty_block_editor_styles', 1, 1 );
  329. /**
  330. * Enqueue classic editor styles.
  331. */
  332. function twentytwenty_classic_editor_styles() {
  333. $classic_editor_styles = array(
  334. '/assets/css/editor-style-classic.css',
  335. );
  336. add_editor_style( $classic_editor_styles );
  337. }
  338. add_action( 'init', 'twentytwenty_classic_editor_styles' );
  339. /**
  340. * Output Customizer settings in the classic editor.
  341. * Adds styles to the head of the TinyMCE iframe. Kudos to @Otto42 for the original solution.
  342. *
  343. * @param array $mce_init TinyMCE styles.
  344. *
  345. * @return array $mce_init TinyMCE styles.
  346. */
  347. function twentytwenty_add_classic_editor_customizer_styles( $mce_init ) {
  348. $styles = twentytwenty_get_customizer_css( 'classic-editor' );
  349. if ( ! isset( $mce_init['content_style'] ) ) {
  350. $mce_init['content_style'] = $styles . ' ';
  351. } else {
  352. $mce_init['content_style'] .= ' ' . $styles . ' ';
  353. }
  354. return $mce_init;
  355. }
  356. add_filter( 'tiny_mce_before_init', 'twentytwenty_add_classic_editor_customizer_styles' );
  357. /**
  358. * Output non-latin font styles in the classic editor.
  359. * Adds styles to the head of the TinyMCE iframe. Kudos to @Otto42 for the original solution.
  360. *
  361. * @param array $mce_init TinyMCE styles.
  362. *
  363. * @return array $mce_init TinyMCE styles.
  364. */
  365. function twentytwenty_add_classic_editor_non_latin_styles( $mce_init ) {
  366. $styles = TwentyTwenty_Non_Latin_Languages::get_non_latin_css( 'classic-editor' );
  367. // Return if there are no styles to add.
  368. if ( ! $styles ) {
  369. return $mce_init;
  370. }
  371. if ( ! isset( $mce_init['content_style'] ) ) {
  372. $mce_init['content_style'] = $styles . ' ';
  373. } else {
  374. $mce_init['content_style'] .= ' ' . $styles . ' ';
  375. }
  376. return $mce_init;
  377. }
  378. add_filter( 'tiny_mce_before_init', 'twentytwenty_add_classic_editor_non_latin_styles' );
  379. /**
  380. * Block Editor Settings.
  381. * Add custom colors and font sizes to the block editor.
  382. */
  383. function twentytwenty_block_editor_settings() {
  384. // Block Editor Palette.
  385. $editor_color_palette = array(
  386. array(
  387. 'name' => __( 'Accent Color', 'twentytwenty' ),
  388. 'slug' => 'accent',
  389. 'color' => twentytwenty_get_color_for_area( 'content', 'accent' ),
  390. ),
  391. array(
  392. 'name' => __( 'Primary', 'twentytwenty' ),
  393. 'slug' => 'primary',
  394. 'color' => twentytwenty_get_color_for_area( 'content', 'text' ),
  395. ),
  396. array(
  397. 'name' => __( 'Secondary', 'twentytwenty' ),
  398. 'slug' => 'secondary',
  399. 'color' => twentytwenty_get_color_for_area( 'content', 'secondary' ),
  400. ),
  401. array(
  402. 'name' => __( 'Subtle Background', 'twentytwenty' ),
  403. 'slug' => 'subtle-background',
  404. 'color' => twentytwenty_get_color_for_area( 'content', 'borders' ),
  405. ),
  406. );
  407. // Add the background option.
  408. $background_color = get_theme_mod( 'background_color' );
  409. if ( ! $background_color ) {
  410. $background_color_arr = get_theme_support( 'custom-background' );
  411. $background_color = $background_color_arr[0]['default-color'];
  412. }
  413. $editor_color_palette[] = array(
  414. 'name' => __( 'Background Color', 'twentytwenty' ),
  415. 'slug' => 'background',
  416. 'color' => '#' . $background_color,
  417. );
  418. // If we have accent colors, add them to the block editor palette.
  419. if ( $editor_color_palette ) {
  420. add_theme_support( 'editor-color-palette', $editor_color_palette );
  421. }
  422. // Block Editor Font Sizes.
  423. add_theme_support(
  424. 'editor-font-sizes',
  425. array(
  426. array(
  427. 'name' => _x( 'Small', 'Name of the small font size in the block editor', 'twentytwenty' ),
  428. 'shortName' => _x( 'S', 'Short name of the small font size in the block editor.', 'twentytwenty' ),
  429. 'size' => 18,
  430. 'slug' => 'small',
  431. ),
  432. array(
  433. 'name' => _x( 'Regular', 'Name of the regular font size in the block editor', 'twentytwenty' ),
  434. 'shortName' => _x( 'M', 'Short name of the regular font size in the block editor.', 'twentytwenty' ),
  435. 'size' => 21,
  436. 'slug' => 'normal',
  437. ),
  438. array(
  439. 'name' => _x( 'Large', 'Name of the large font size in the block editor', 'twentytwenty' ),
  440. 'shortName' => _x( 'L', 'Short name of the large font size in the block editor.', 'twentytwenty' ),
  441. 'size' => 26.25,
  442. 'slug' => 'large',
  443. ),
  444. array(
  445. 'name' => _x( 'Larger', 'Name of the larger font size in the block editor', 'twentytwenty' ),
  446. 'shortName' => _x( 'XL', 'Short name of the larger font size in the block editor.', 'twentytwenty' ),
  447. 'size' => 32,
  448. 'slug' => 'larger',
  449. ),
  450. )
  451. );
  452. // If we have a dark background color then add support for dark editor style.
  453. // We can determine if the background color is dark by checking if the text-color is white.
  454. if ( '#ffffff' === strtolower( twentytwenty_get_color_for_area( 'content', 'text' ) ) ) {
  455. add_theme_support( 'dark-editor-style' );
  456. }
  457. }
  458. add_action( 'after_setup_theme', 'twentytwenty_block_editor_settings' );
  459. /**
  460. * Overwrite default more tag with styling and screen reader markup.
  461. *
  462. * @param string $html The default output HTML for the more tag.
  463. *
  464. * @return string $html
  465. */
  466. function twentytwenty_read_more_tag( $html ) {
  467. return preg_replace( '/<a(.*)>(.*)<\/a>/iU', sprintf( '<div class="read-more-button-wrap"><a$1><span class="faux-button">$2</span> <span class="screen-reader-text">"%1$s"</span></a></div>', get_the_title( get_the_ID() ) ), $html );
  468. }
  469. add_filter( 'the_content_more_link', 'twentytwenty_read_more_tag' );
  470. /**
  471. * Enqueues scripts for customizer controls & settings.
  472. *
  473. * @since Twenty Twenty 1.0
  474. *
  475. * @return void
  476. */
  477. function twentytwenty_customize_controls_enqueue_scripts() {
  478. $theme_version = wp_get_theme()->get( 'Version' );
  479. // Add main customizer js file.
  480. wp_enqueue_script( 'twentytwenty-customize', get_template_directory_uri() . '/assets/js/customize.js', array( 'jquery' ), $theme_version, false );
  481. // Add script for color calculations.
  482. wp_enqueue_script( 'twentytwenty-color-calculations', get_template_directory_uri() . '/assets/js/color-calculations.js', array( 'wp-color-picker' ), $theme_version, false );
  483. // Add script for controls.
  484. wp_enqueue_script( 'twentytwenty-customize-controls', get_template_directory_uri() . '/assets/js/customize-controls.js', array( 'twentytwenty-color-calculations', 'customize-controls', 'underscore', 'jquery' ), $theme_version, false );
  485. wp_localize_script( 'twentytwenty-customize-controls', 'twentyTwentyBgColors', twentytwenty_get_customizer_color_vars() );
  486. }
  487. add_action( 'customize_controls_enqueue_scripts', 'twentytwenty_customize_controls_enqueue_scripts' );
  488. /**
  489. * Enqueue scripts for the customizer preview.
  490. *
  491. * @since Twenty Twenty 1.0
  492. *
  493. * @return void
  494. */
  495. function twentytwenty_customize_preview_init() {
  496. $theme_version = wp_get_theme()->get( 'Version' );
  497. wp_enqueue_script( 'twentytwenty-customize-preview', get_theme_file_uri( '/assets/js/customize-preview.js' ), array( 'customize-preview', 'customize-selective-refresh', 'jquery' ), $theme_version, true );
  498. wp_localize_script( 'twentytwenty-customize-preview', 'twentyTwentyBgColors', twentytwenty_get_customizer_color_vars() );
  499. wp_localize_script( 'twentytwenty-customize-preview', 'twentyTwentyPreviewEls', twentytwenty_get_elements_array() );
  500. wp_add_inline_script(
  501. 'twentytwenty-customize-preview',
  502. sprintf(
  503. 'wp.customize.selectiveRefresh.partialConstructor[ %1$s ].prototype.attrs = %2$s;',
  504. wp_json_encode( 'cover_opacity' ),
  505. wp_json_encode( twentytwenty_customize_opacity_range() )
  506. )
  507. );
  508. }
  509. add_action( 'customize_preview_init', 'twentytwenty_customize_preview_init' );
  510. /**
  511. * Get accessible color for an area.
  512. *
  513. * @since Twenty Twenty 1.0
  514. *
  515. * @param string $area The area we want to get the colors for.
  516. * @param string $context Can be 'text' or 'accent'.
  517. * @return string Returns a HEX color.
  518. */
  519. function twentytwenty_get_color_for_area( $area = 'content', $context = 'text' ) {
  520. // Get the value from the theme-mod.
  521. $settings = get_theme_mod(
  522. 'accent_accessible_colors',
  523. array(
  524. 'content' => array(
  525. 'text' => '#000000',
  526. 'accent' => '#cd2653',
  527. 'secondary' => '#6d6d6d',
  528. 'borders' => '#dcd7ca',
  529. ),
  530. 'header-footer' => array(
  531. 'text' => '#000000',
  532. 'accent' => '#cd2653',
  533. 'secondary' => '#6d6d6d',
  534. 'borders' => '#dcd7ca',
  535. ),
  536. )
  537. );
  538. // If we have a value return it.
  539. if ( isset( $settings[ $area ] ) && isset( $settings[ $area ][ $context ] ) ) {
  540. return $settings[ $area ][ $context ];
  541. }
  542. // Return false if the option doesn't exist.
  543. return false;
  544. }
  545. /**
  546. * Returns an array of variables for the customizer preview.
  547. *
  548. * @since Twenty Twenty 1.0
  549. *
  550. * @return array
  551. */
  552. function twentytwenty_get_customizer_color_vars() {
  553. $colors = array(
  554. 'content' => array(
  555. 'setting' => 'background_color',
  556. ),
  557. 'header-footer' => array(
  558. 'setting' => 'header_footer_background_color',
  559. ),
  560. );
  561. return $colors;
  562. }
  563. /**
  564. * Get an array of elements.
  565. *
  566. * @since Twenty Twenty 1.0
  567. *
  568. * @return array
  569. */
  570. function twentytwenty_get_elements_array() {
  571. // The array is formatted like this:
  572. // [key-in-saved-setting][sub-key-in-setting][css-property] = [elements].
  573. $elements = array(
  574. 'content' => array(
  575. 'accent' => array(
  576. 'color' => array( '.color-accent', '.color-accent-hover:hover', '.color-accent-hover:focus', ':root .has-accent-color', '.has-drop-cap:not(:focus):first-letter', '.wp-block-button.is-style-outline', 'a' ),
  577. 'border-color' => array( 'blockquote', '.border-color-accent', '.border-color-accent-hover:hover', '.border-color-accent-hover:focus' ),
  578. 'background-color' => array( 'button:not(.toggle)', '.button', '.faux-button', '.wp-block-button__link', '.wp-block-file .wp-block-file__button', 'input[type="button"]', 'input[type="reset"]', 'input[type="submit"]', '.bg-accent', '.bg-accent-hover:hover', '.bg-accent-hover:focus', ':root .has-accent-background-color', '.comment-reply-link' ),
  579. 'fill' => array( '.fill-children-accent', '.fill-children-accent *' ),
  580. ),
  581. 'background' => array(
  582. 'color' => array( ':root .has-background-color', 'button', '.button', '.faux-button', '.wp-block-button__link', '.wp-block-file__button', 'input[type="button"]', 'input[type="reset"]', 'input[type="submit"]', '.wp-block-button', '.comment-reply-link', '.has-background.has-primary-background-color:not(.has-text-color)', '.has-background.has-primary-background-color *:not(.has-text-color)', '.has-background.has-accent-background-color:not(.has-text-color)', '.has-background.has-accent-background-color *:not(.has-text-color)' ),
  583. 'background-color' => array( ':root .has-background-background-color' ),
  584. ),
  585. 'text' => array(
  586. 'color' => array( 'body', '.entry-title a', ':root .has-primary-color' ),
  587. 'background-color' => array( ':root .has-primary-background-color' ),
  588. ),
  589. 'secondary' => array(
  590. 'color' => array( 'cite', 'figcaption', '.wp-caption-text', '.post-meta', '.entry-content .wp-block-archives li', '.entry-content .wp-block-categories li', '.entry-content .wp-block-latest-posts li', '.wp-block-latest-comments__comment-date', '.wp-block-latest-posts__post-date', '.wp-block-embed figcaption', '.wp-block-image figcaption', '.wp-block-pullquote cite', '.comment-metadata', '.comment-respond .comment-notes', '.comment-respond .logged-in-as', '.pagination .dots', '.entry-content hr:not(.has-background)', 'hr.styled-separator', ':root .has-secondary-color' ),
  591. 'background-color' => array( ':root .has-secondary-background-color' ),
  592. ),
  593. 'borders' => array(
  594. 'border-color' => array( 'pre', 'fieldset', 'input', 'textarea', 'table', 'table *', 'hr' ),
  595. 'background-color' => array( 'caption', 'code', 'code', 'kbd', 'samp', '.wp-block-table.is-style-stripes tbody tr:nth-child(odd)', ':root .has-subtle-background-background-color' ),
  596. 'border-bottom-color' => array( '.wp-block-table.is-style-stripes' ),
  597. 'border-top-color' => array( '.wp-block-latest-posts.is-grid li' ),
  598. 'color' => array( ':root .has-subtle-background-color' ),
  599. ),
  600. ),
  601. 'header-footer' => array(
  602. 'accent' => array(
  603. 'color' => array( 'body:not(.overlay-header) .primary-menu > li > a', 'body:not(.overlay-header) .primary-menu > li > .icon', '.modal-menu a', '.footer-menu a, .footer-widgets a', '#site-footer .wp-block-button.is-style-outline', '.wp-block-pullquote:before', '.singular:not(.overlay-header) .entry-header a', '.archive-header a', '.header-footer-group .color-accent', '.header-footer-group .color-accent-hover:hover' ),
  604. 'background-color' => array( '.social-icons a', '#site-footer button:not(.toggle)', '#site-footer .button', '#site-footer .faux-button', '#site-footer .wp-block-button__link', '#site-footer .wp-block-file__button', '#site-footer input[type="button"]', '#site-footer input[type="reset"]', '#site-footer input[type="submit"]' ),
  605. ),
  606. 'background' => array(
  607. 'color' => array( '.social-icons a', 'body:not(.overlay-header) .primary-menu ul', '.header-footer-group button', '.header-footer-group .button', '.header-footer-group .faux-button', '.header-footer-group .wp-block-button:not(.is-style-outline) .wp-block-button__link', '.header-footer-group .wp-block-file__button', '.header-footer-group input[type="button"]', '.header-footer-group input[type="reset"]', '.header-footer-group input[type="submit"]' ),
  608. 'background-color' => array( '#site-header', '.footer-nav-widgets-wrapper', '#site-footer', '.menu-modal', '.menu-modal-inner', '.search-modal-inner', '.archive-header', '.singular .entry-header', '.singular .featured-media:before', '.wp-block-pullquote:before' ),
  609. ),
  610. 'text' => array(
  611. 'color' => array( '.header-footer-group', 'body:not(.overlay-header) #site-header .toggle', '.menu-modal .toggle' ),
  612. 'background-color' => array( 'body:not(.overlay-header) .primary-menu ul' ),
  613. 'border-bottom-color' => array( 'body:not(.overlay-header) .primary-menu > li > ul:after' ),
  614. 'border-left-color' => array( 'body:not(.overlay-header) .primary-menu ul ul:after' ),
  615. ),
  616. 'secondary' => array(
  617. 'color' => array( '.site-description', 'body:not(.overlay-header) .toggle-inner .toggle-text', '.widget .post-date', '.widget .rss-date', '.widget_archive li', '.widget_categories li', '.widget cite', '.widget_pages li', '.widget_meta li', '.widget_nav_menu li', '.powered-by-wordpress', '.to-the-top', '.singular .entry-header .post-meta', '.singular:not(.overlay-header) .entry-header .post-meta a' ),
  618. ),
  619. 'borders' => array(
  620. 'border-color' => array( '.header-footer-group pre', '.header-footer-group fieldset', '.header-footer-group input', '.header-footer-group textarea', '.header-footer-group table', '.header-footer-group table *', '.footer-nav-widgets-wrapper', '#site-footer', '.menu-modal nav *', '.footer-widgets-outer-wrapper', '.footer-top' ),
  621. 'background-color' => array( '.header-footer-group table caption', 'body:not(.overlay-header) .header-inner .toggle-wrapper::before' ),
  622. ),
  623. ),
  624. );
  625. /**
  626. * Filters Twenty Twenty theme elements
  627. *
  628. * @since Twenty Twenty 1.0
  629. *
  630. * @param array Array of elements
  631. */
  632. return apply_filters( 'twentytwenty_get_elements_array', $elements );
  633. }