You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

103 lines
2.5 KiB

  1. <?php
  2. /**
  3. * Additional features to allow styling of the templates
  4. *
  5. * @package WordPress
  6. * @subpackage Twenty_Seventeen
  7. * @since 1.0
  8. */
  9. /**
  10. * Adds custom classes to the array of body classes.
  11. *
  12. * @param array $classes Classes for the body element.
  13. * @return array
  14. */
  15. function twentyseventeen_body_classes( $classes ) {
  16. // Add class of group-blog to blogs with more than 1 published author.
  17. if ( is_multi_author() ) {
  18. $classes[] = 'group-blog';
  19. }
  20. // Add class of hfeed to non-singular pages.
  21. if ( ! is_singular() ) {
  22. $classes[] = 'hfeed';
  23. }
  24. // Add class if we're viewing the Customizer for easier styling of theme options.
  25. if ( is_customize_preview() ) {
  26. $classes[] = 'twentyseventeen-customizer';
  27. }
  28. // Add class on front page.
  29. if ( is_front_page() && 'posts' !== get_option( 'show_on_front' ) ) {
  30. $classes[] = 'twentyseventeen-front-page';
  31. }
  32. // Add a class if there is a custom header.
  33. if ( has_header_image() ) {
  34. $classes[] = 'has-header-image';
  35. }
  36. // Add class if sidebar is used.
  37. if ( is_active_sidebar( 'sidebar-1' ) && ! is_page() ) {
  38. $classes[] = 'has-sidebar';
  39. }
  40. // Add class for one or two column page layouts.
  41. if ( is_page() || is_archive() ) {
  42. if ( 'one-column' === get_theme_mod( 'page_layout' ) ) {
  43. $classes[] = 'page-one-column';
  44. } else {
  45. $classes[] = 'page-two-column';
  46. }
  47. }
  48. // Add class if the site title and tagline is hidden.
  49. if ( 'blank' === get_header_textcolor() ) {
  50. $classes[] = 'title-tagline-hidden';
  51. }
  52. // Get the colorscheme or the default if there isn't one.
  53. $colors = twentyseventeen_sanitize_colorscheme( get_theme_mod( 'colorscheme', 'light' ) );
  54. $classes[] = 'colors-' . $colors;
  55. return $classes;
  56. }
  57. add_filter( 'body_class', 'twentyseventeen_body_classes' );
  58. /**
  59. * Count our number of active panels.
  60. *
  61. * Primarily used to see if we have any panels active, duh.
  62. */
  63. function twentyseventeen_panel_count() {
  64. $panel_count = 0;
  65. /**
  66. * Filter number of front page sections in Twenty Seventeen.
  67. *
  68. * @since Twenty Seventeen 1.0
  69. *
  70. * @param $num_sections integer
  71. */
  72. $num_sections = apply_filters( 'twentyseventeen_front_page_sections', 4 );
  73. // Create a setting and control for each of the sections available in the theme.
  74. for ( $i = 1; $i < ( 1 + $num_sections ); $i++ ) {
  75. if ( get_theme_mod( 'panel_' . $i ) ) {
  76. $panel_count++;
  77. }
  78. }
  79. return $panel_count;
  80. }
  81. /**
  82. * Checks to see if we're on the homepage or not.
  83. */
  84. function twentyseventeen_is_frontpage() {
  85. return ( is_front_page() && ! is_home() );
  86. }