25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 

567 satır
18 KiB

  1. <?php
  2. /**
  3. * Twenty Seventeen functions and definitions
  4. *
  5. * @link https://developer.wordpress.org/themes/basics/theme-functions/
  6. *
  7. * @package WordPress
  8. * @subpackage Twenty_Seventeen
  9. * @since 1.0
  10. */
  11. /**
  12. * Twenty Seventeen only works in WordPress 4.7 or later.
  13. */
  14. if ( version_compare( $GLOBALS['wp_version'], '4.7-alpha', '<' ) ) {
  15. require get_template_directory() . '/inc/back-compat.php';
  16. return;
  17. }
  18. /**
  19. * Sets up theme defaults and registers support for various WordPress features.
  20. *
  21. * Note that this function is hooked into the after_setup_theme hook, which
  22. * runs before the init hook. The init hook is too late for some features, such
  23. * as indicating support for post thumbnails.
  24. */
  25. function twentyseventeen_setup() {
  26. /*
  27. * Make theme available for translation.
  28. * Translations can be filed at WordPress.org. See: https://translate.wordpress.org/projects/wp-themes/twentyseventeen
  29. * If you're building a theme based on Twenty Seventeen, use a find and replace
  30. * to change 'twentyseventeen' to the name of your theme in all the template files.
  31. */
  32. load_theme_textdomain( 'twentyseventeen' );
  33. // Add default posts and comments RSS feed links to head.
  34. add_theme_support( 'automatic-feed-links' );
  35. /*
  36. * Let WordPress manage the document title.
  37. * By adding theme support, we declare that this theme does not use a
  38. * hard-coded <title> tag in the document head, and expect WordPress to
  39. * provide it for us.
  40. */
  41. add_theme_support( 'title-tag' );
  42. /*
  43. * Enable support for Post Thumbnails on posts and pages.
  44. *
  45. * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
  46. */
  47. add_theme_support( 'post-thumbnails' );
  48. add_image_size( 'twentyseventeen-featured-image', 2000, 1200, true );
  49. add_image_size( 'twentyseventeen-thumbnail-avatar', 100, 100, true );
  50. // Set the default content width.
  51. $GLOBALS['content_width'] = 525;
  52. // This theme uses wp_nav_menu() in two locations.
  53. register_nav_menus( array(
  54. 'top' => __( 'Top Menu', 'twentyseventeen' ),
  55. 'social' => __( 'Social Links Menu', 'twentyseventeen' ),
  56. ) );
  57. /*
  58. * Switch default core markup for search form, comment form, and comments
  59. * to output valid HTML5.
  60. */
  61. add_theme_support( 'html5', array(
  62. 'comment-form',
  63. 'comment-list',
  64. 'gallery',
  65. 'caption',
  66. ) );
  67. /*
  68. * Enable support for Post Formats.
  69. *
  70. * See: https://codex.wordpress.org/Post_Formats
  71. */
  72. add_theme_support( 'post-formats', array(
  73. 'aside',
  74. 'image',
  75. 'video',
  76. 'quote',
  77. 'link',
  78. 'gallery',
  79. 'audio',
  80. ) );
  81. // Add theme support for Custom Logo.
  82. add_theme_support( 'custom-logo', array(
  83. 'width' => 250,
  84. 'height' => 250,
  85. 'flex-width' => true,
  86. ) );
  87. // Add theme support for selective refresh for widgets.
  88. add_theme_support( 'customize-selective-refresh-widgets' );
  89. /*
  90. * This theme styles the visual editor to resemble the theme style,
  91. * specifically font, colors, and column width.
  92. */
  93. add_editor_style( array( 'assets/css/editor-style.css', twentyseventeen_fonts_url() ) );
  94. // Define and register starter content to showcase the theme on new sites.
  95. $starter_content = array(
  96. 'widgets' => array(
  97. // Place three core-defined widgets in the sidebar area.
  98. 'sidebar-1' => array(
  99. 'text_business_info',
  100. 'search',
  101. 'text_about',
  102. ),
  103. // Add the core-defined business info widget to the footer 1 area.
  104. 'sidebar-2' => array(
  105. 'text_business_info',
  106. ),
  107. // Put two core-defined widgets in the footer 2 area.
  108. 'sidebar-3' => array(
  109. 'text_about',
  110. 'search',
  111. ),
  112. ),
  113. // Specify the core-defined pages to create and add custom thumbnails to some of them.
  114. 'posts' => array(
  115. 'home',
  116. 'about' => array(
  117. 'thumbnail' => '{{image-sandwich}}',
  118. ),
  119. 'contact' => array(
  120. 'thumbnail' => '{{image-espresso}}',
  121. ),
  122. 'blog' => array(
  123. 'thumbnail' => '{{image-coffee}}',
  124. ),
  125. 'homepage-section' => array(
  126. 'thumbnail' => '{{image-espresso}}',
  127. ),
  128. ),
  129. // Create the custom image attachments used as post thumbnails for pages.
  130. 'attachments' => array(
  131. 'image-espresso' => array(
  132. 'post_title' => _x( 'Espresso', 'Theme starter content', 'twentyseventeen' ),
  133. 'file' => 'assets/images/espresso.jpg', // URL relative to the template directory.
  134. ),
  135. 'image-sandwich' => array(
  136. 'post_title' => _x( 'Sandwich', 'Theme starter content', 'twentyseventeen' ),
  137. 'file' => 'assets/images/sandwich.jpg',
  138. ),
  139. 'image-coffee' => array(
  140. 'post_title' => _x( 'Coffee', 'Theme starter content', 'twentyseventeen' ),
  141. 'file' => 'assets/images/coffee.jpg',
  142. ),
  143. ),
  144. // Default to a static front page and assign the front and posts pages.
  145. 'options' => array(
  146. 'show_on_front' => 'page',
  147. 'page_on_front' => '{{home}}',
  148. 'page_for_posts' => '{{blog}}',
  149. ),
  150. // Set the front page section theme mods to the IDs of the core-registered pages.
  151. 'theme_mods' => array(
  152. 'panel_1' => '{{homepage-section}}',
  153. 'panel_2' => '{{about}}',
  154. 'panel_3' => '{{blog}}',
  155. 'panel_4' => '{{contact}}',
  156. ),
  157. // Set up nav menus for each of the two areas registered in the theme.
  158. 'nav_menus' => array(
  159. // Assign a menu to the "top" location.
  160. 'top' => array(
  161. 'name' => __( 'Top Menu', 'twentyseventeen' ),
  162. 'items' => array(
  163. 'link_home', // Note that the core "home" page is actually a link in case a static front page is not used.
  164. 'page_about',
  165. 'page_blog',
  166. 'page_contact',
  167. ),
  168. ),
  169. // Assign a menu to the "social" location.
  170. 'social' => array(
  171. 'name' => __( 'Social Links Menu', 'twentyseventeen' ),
  172. 'items' => array(
  173. 'link_yelp',
  174. 'link_facebook',
  175. 'link_twitter',
  176. 'link_instagram',
  177. 'link_email',
  178. ),
  179. ),
  180. ),
  181. );
  182. /**
  183. * Filters Twenty Seventeen array of starter content.
  184. *
  185. * @since Twenty Seventeen 1.1
  186. *
  187. * @param array $starter_content Array of starter content.
  188. */
  189. $starter_content = apply_filters( 'twentyseventeen_starter_content', $starter_content );
  190. add_theme_support( 'starter-content', $starter_content );
  191. }
  192. add_action( 'after_setup_theme', 'twentyseventeen_setup' );
  193. /**
  194. * Set the content width in pixels, based on the theme's design and stylesheet.
  195. *
  196. * Priority 0 to make it available to lower priority callbacks.
  197. *
  198. * @global int $content_width
  199. */
  200. function twentyseventeen_content_width() {
  201. $content_width = $GLOBALS['content_width'];
  202. // Get layout.
  203. $page_layout = get_theme_mod( 'page_layout' );
  204. // Check if layout is one column.
  205. if ( 'one-column' === $page_layout ) {
  206. if ( twentyseventeen_is_frontpage() ) {
  207. $content_width = 644;
  208. } elseif ( is_page() ) {
  209. $content_width = 740;
  210. }
  211. }
  212. // Check if is single post and there is no sidebar.
  213. if ( is_single() && ! is_active_sidebar( 'sidebar-1' ) ) {
  214. $content_width = 740;
  215. }
  216. /**
  217. * Filter Twenty Seventeen content width of the theme.
  218. *
  219. * @since Twenty Seventeen 1.0
  220. *
  221. * @param $content_width integer
  222. */
  223. $GLOBALS['content_width'] = apply_filters( 'twentyseventeen_content_width', $content_width );
  224. }
  225. add_action( 'template_redirect', 'twentyseventeen_content_width', 0 );
  226. /**
  227. * Register custom fonts.
  228. */
  229. function twentyseventeen_fonts_url() {
  230. $fonts_url = '';
  231. /**
  232. * Translators: If there are characters in your language that are not
  233. * supported by Libre Franklin, translate this to 'off'. Do not translate
  234. * into your own language.
  235. */
  236. $libre_franklin = _x( 'on', 'Libre Franklin font: on or off', 'twentyseventeen' );
  237. if ( 'off' !== $libre_franklin ) {
  238. $font_families = array();
  239. $font_families[] = 'Libre Franklin:300,300i,400,400i,600,600i,800,800i';
  240. $query_args = array(
  241. 'family' => urlencode( implode( '|', $font_families ) ),
  242. 'subset' => urlencode( 'latin,latin-ext' ),
  243. );
  244. $fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' );
  245. }
  246. return esc_url_raw( $fonts_url );
  247. }
  248. /**
  249. * Add preconnect for Google Fonts.
  250. *
  251. * @since Twenty Seventeen 1.0
  252. *
  253. * @param array $urls URLs to print for resource hints.
  254. * @param string $relation_type The relation type the URLs are printed.
  255. * @return array $urls URLs to print for resource hints.
  256. */
  257. function twentyseventeen_resource_hints( $urls, $relation_type ) {
  258. if ( wp_style_is( 'twentyseventeen-fonts', 'queue' ) && 'preconnect' === $relation_type ) {
  259. $urls[] = array(
  260. 'href' => 'https://fonts.gstatic.com',
  261. 'crossorigin',
  262. );
  263. }
  264. return $urls;
  265. }
  266. add_filter( 'wp_resource_hints', 'twentyseventeen_resource_hints', 10, 2 );
  267. /**
  268. * Register widget area.
  269. *
  270. * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
  271. */
  272. function twentyseventeen_widgets_init() {
  273. register_sidebar( array(
  274. 'name' => __( 'Sidebar', 'twentyseventeen' ),
  275. 'id' => 'sidebar-1',
  276. 'description' => __( 'Add widgets here to appear in your sidebar.', 'twentyseventeen' ),
  277. 'before_widget' => '<section id="%1$s" class="widget %2$s">',
  278. 'after_widget' => '</section>',
  279. 'before_title' => '<h2 class="widget-title">',
  280. 'after_title' => '</h2>',
  281. ) );
  282. register_sidebar( array(
  283. 'name' => __( 'Footer 1', 'twentyseventeen' ),
  284. 'id' => 'sidebar-2',
  285. 'description' => __( 'Add widgets here to appear in your footer.', 'twentyseventeen' ),
  286. 'before_widget' => '<section id="%1$s" class="widget %2$s">',
  287. 'after_widget' => '</section>',
  288. 'before_title' => '<h2 class="widget-title">',
  289. 'after_title' => '</h2>',
  290. ) );
  291. register_sidebar( array(
  292. 'name' => __( 'Footer 2', 'twentyseventeen' ),
  293. 'id' => 'sidebar-3',
  294. 'description' => __( 'Add widgets here to appear in your footer.', 'twentyseventeen' ),
  295. 'before_widget' => '<section id="%1$s" class="widget %2$s">',
  296. 'after_widget' => '</section>',
  297. 'before_title' => '<h2 class="widget-title">',
  298. 'after_title' => '</h2>',
  299. ) );
  300. }
  301. add_action( 'widgets_init', 'twentyseventeen_widgets_init' );
  302. /**
  303. * Replaces "[...]" (appended to automatically generated excerpts) with ... and
  304. * a 'Continue reading' link.
  305. *
  306. * @since Twenty Seventeen 1.0
  307. *
  308. * @return string 'Continue reading' link prepended with an ellipsis.
  309. */
  310. function twentyseventeen_excerpt_more( $link ) {
  311. if ( is_admin() ) {
  312. return $link;
  313. }
  314. $link = sprintf( '<p class="link-more"><a href="%1$s" class="more-link">%2$s</a></p>',
  315. esc_url( get_permalink( get_the_ID() ) ),
  316. /* translators: %s: Name of current post */
  317. sprintf( __( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'twentyseventeen' ), get_the_title( get_the_ID() ) )
  318. );
  319. return ' &hellip; ' . $link;
  320. }
  321. add_filter( 'excerpt_more', 'twentyseventeen_excerpt_more' );
  322. /**
  323. * Handles JavaScript detection.
  324. *
  325. * Adds a `js` class to the root `<html>` element when JavaScript is detected.
  326. *
  327. * @since Twenty Seventeen 1.0
  328. */
  329. function twentyseventeen_javascript_detection() {
  330. echo "<script>(function(html){html.className = html.className.replace(/\bno-js\b/,'js')})(document.documentElement);</script>\n";
  331. }
  332. add_action( 'wp_head', 'twentyseventeen_javascript_detection', 0 );
  333. /**
  334. * Add a pingback url auto-discovery header for singularly identifiable articles.
  335. */
  336. function twentyseventeen_pingback_header() {
  337. if ( is_singular() && pings_open() ) {
  338. printf( '<link rel="pingback" href="%s">' . "\n", get_bloginfo( 'pingback_url' ) );
  339. }
  340. }
  341. add_action( 'wp_head', 'twentyseventeen_pingback_header' );
  342. /**
  343. * Display custom color CSS.
  344. */
  345. function twentyseventeen_colors_css_wrap() {
  346. if ( 'custom' !== get_theme_mod( 'colorscheme' ) && ! is_customize_preview() ) {
  347. return;
  348. }
  349. require_once( get_parent_theme_file_path( '/inc/color-patterns.php' ) );
  350. $hue = absint( get_theme_mod( 'colorscheme_hue', 250 ) );
  351. ?>
  352. <style type="text/css" id="custom-theme-colors" <?php if ( is_customize_preview() ) { echo 'data-hue="' . $hue . '"'; } ?>>
  353. <?php echo twentyseventeen_custom_colors_css(); ?>
  354. </style>
  355. <?php }
  356. add_action( 'wp_head', 'twentyseventeen_colors_css_wrap' );
  357. /**
  358. * Enqueue scripts and styles.
  359. */
  360. function twentyseventeen_scripts() {
  361. // Add custom fonts, used in the main stylesheet.
  362. wp_enqueue_style( 'twentyseventeen-fonts', twentyseventeen_fonts_url(), array(), null );
  363. // Theme stylesheet.
  364. wp_enqueue_style( 'twentyseventeen-style', get_stylesheet_uri() );
  365. // Load the dark colorscheme.
  366. if ( 'dark' === get_theme_mod( 'colorscheme', 'light' ) || is_customize_preview() ) {
  367. wp_enqueue_style( 'twentyseventeen-colors-dark', get_theme_file_uri( '/assets/css/colors-dark.css' ), array( 'twentyseventeen-style' ), '1.0' );
  368. }
  369. // Load the Internet Explorer 9 specific stylesheet, to fix display issues in the Customizer.
  370. if ( is_customize_preview() ) {
  371. wp_enqueue_style( 'twentyseventeen-ie9', get_theme_file_uri( '/assets/css/ie9.css' ), array( 'twentyseventeen-style' ), '1.0' );
  372. wp_style_add_data( 'twentyseventeen-ie9', 'conditional', 'IE 9' );
  373. }
  374. // Load the Internet Explorer 8 specific stylesheet.
  375. wp_enqueue_style( 'twentyseventeen-ie8', get_theme_file_uri( '/assets/css/ie8.css' ), array( 'twentyseventeen-style' ), '1.0' );
  376. wp_style_add_data( 'twentyseventeen-ie8', 'conditional', 'lt IE 9' );
  377. // Load the html5 shiv.
  378. wp_enqueue_script( 'html5', get_theme_file_uri( '/assets/js/html5.js' ), array(), '3.7.3' );
  379. wp_script_add_data( 'html5', 'conditional', 'lt IE 9' );
  380. wp_enqueue_script( 'twentyseventeen-skip-link-focus-fix', get_theme_file_uri( '/assets/js/skip-link-focus-fix.js' ), array(), '1.0', true );
  381. $twentyseventeen_l10n = array(
  382. 'quote' => twentyseventeen_get_svg( array( 'icon' => 'quote-right' ) ),
  383. );
  384. if ( has_nav_menu( 'top' ) ) {
  385. wp_enqueue_script( 'twentyseventeen-navigation', get_theme_file_uri( '/assets/js/navigation.js' ), array(), '1.0', true );
  386. $twentyseventeen_l10n['expand'] = __( 'Expand child menu', 'twentyseventeen' );
  387. $twentyseventeen_l10n['collapse'] = __( 'Collapse child menu', 'twentyseventeen' );
  388. $twentyseventeen_l10n['icon'] = twentyseventeen_get_svg( array( 'icon' => 'angle-down', 'fallback' => true ) );
  389. }
  390. wp_enqueue_script( 'twentyseventeen-global', get_theme_file_uri( '/assets/js/global.js' ), array( 'jquery' ), '1.0', true );
  391. wp_enqueue_script( 'jquery-scrollto', get_theme_file_uri( '/assets/js/jquery.scrollTo.js' ), array( 'jquery' ), '2.1.2', true );
  392. wp_localize_script( 'twentyseventeen-skip-link-focus-fix', 'twentyseventeenScreenReaderText', $twentyseventeen_l10n );
  393. if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
  394. wp_enqueue_script( 'comment-reply' );
  395. }
  396. }
  397. add_action( 'wp_enqueue_scripts', 'twentyseventeen_scripts' );
  398. /**
  399. * Add custom image sizes attribute to enhance responsive image functionality
  400. * for content images.
  401. *
  402. * @since Twenty Seventeen 1.0
  403. *
  404. * @param string $sizes A source size value for use in a 'sizes' attribute.
  405. * @param array $size Image size. Accepts an array of width and height
  406. * values in pixels (in that order).
  407. * @return string A source size value for use in a content image 'sizes' attribute.
  408. */
  409. function twentyseventeen_content_image_sizes_attr( $sizes, $size ) {
  410. $width = $size[0];
  411. if ( 740 <= $width ) {
  412. $sizes = '(max-width: 706px) 89vw, (max-width: 767px) 82vw, 740px';
  413. }
  414. if ( is_active_sidebar( 'sidebar-1' ) || is_archive() || is_search() || is_home() || is_page() ) {
  415. if ( ! ( is_page() && 'one-column' === get_theme_mod( 'page_options' ) ) && 767 <= $width ) {
  416. $sizes = '(max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 543px, 580px';
  417. }
  418. }
  419. return $sizes;
  420. }
  421. add_filter( 'wp_calculate_image_sizes', 'twentyseventeen_content_image_sizes_attr', 10, 2 );
  422. /**
  423. * Filter the `sizes` value in the header image markup.
  424. *
  425. * @since Twenty Seventeen 1.0
  426. *
  427. * @param string $html The HTML image tag markup being filtered.
  428. * @param object $header The custom header object returned by 'get_custom_header()'.
  429. * @param array $attr Array of the attributes for the image tag.
  430. * @return string The filtered header image HTML.
  431. */
  432. function twentyseventeen_header_image_tag( $html, $header, $attr ) {
  433. if ( isset( $attr['sizes'] ) ) {
  434. $html = str_replace( $attr['sizes'], '100vw', $html );
  435. }
  436. return $html;
  437. }
  438. add_filter( 'get_header_image_tag', 'twentyseventeen_header_image_tag', 10, 3 );
  439. /**
  440. * Add custom image sizes attribute to enhance responsive image functionality
  441. * for post thumbnails.
  442. *
  443. * @since Twenty Seventeen 1.0
  444. *
  445. * @param array $attr Attributes for the image markup.
  446. * @param int $attachment Image attachment ID.
  447. * @param array $size Registered image size or flat array of height and width dimensions.
  448. * @return string A source size value for use in a post thumbnail 'sizes' attribute.
  449. */
  450. function twentyseventeen_post_thumbnail_sizes_attr( $attr, $attachment, $size ) {
  451. if ( is_archive() || is_search() || is_home() ) {
  452. $attr['sizes'] = '(max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 543px, 580px';
  453. } else {
  454. $attr['sizes'] = '100vw';
  455. }
  456. return $attr;
  457. }
  458. add_filter( 'wp_get_attachment_image_attributes', 'twentyseventeen_post_thumbnail_sizes_attr', 10, 3 );
  459. /**
  460. * Use front-page.php when Front page displays is set to a static page.
  461. *
  462. * @since Twenty Seventeen 1.0
  463. *
  464. * @param string $template front-page.php.
  465. *
  466. * @return string The template to be used: blank if is_home() is true (defaults to index.php), else $template.
  467. */
  468. function twentyseventeen_front_page_template( $template ) {
  469. return is_home() ? '' : $template;
  470. }
  471. add_filter( 'frontpage_template', 'twentyseventeen_front_page_template' );
  472. /**
  473. * Implement the Custom Header feature.
  474. */
  475. require get_parent_theme_file_path( '/inc/custom-header.php' );
  476. /**
  477. * Custom template tags for this theme.
  478. */
  479. require get_parent_theme_file_path( '/inc/template-tags.php' );
  480. /**
  481. * Additional features to allow styling of the templates.
  482. */
  483. require get_parent_theme_file_path( '/inc/template-functions.php' );
  484. /**
  485. * Customizer additions.
  486. */
  487. require get_parent_theme_file_path( '/inc/customizer.php' );
  488. /**
  489. * SVG icons functions and filters.
  490. */
  491. require get_parent_theme_file_path( '/inc/icon-functions.php' );