functions.php 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. <?php
  2. /**
  3. * UIU CSE functions and definitions
  4. *
  5. * @link https://developer.wordpress.org/themes/basics/theme-functions/
  6. *
  7. * @package UIU_CSE
  8. */
  9. if (!defined('_S_VERSION')) {
  10. // Replace the version number of the theme on each release.
  11. define('_S_VERSION', '1.0.0');
  12. }
  13. /**
  14. * Sets up theme defaults and registers support for various WordPress features.
  15. *
  16. * Note that this function is hooked into the after_setup_theme hook, which
  17. * runs before the init hook. The init hook is too late for some features, such
  18. * as indicating support for post thumbnails.
  19. */
  20. function uiu_cse_setup()
  21. {
  22. /*
  23. * Make theme available for translation.
  24. * Translations can be filed in the /languages/ directory.
  25. * If you're building a theme based on UIU CSE, use a find and replace
  26. * to change 'uiu-cse' to the name of your theme in all the template files.
  27. */
  28. load_theme_textdomain('uiu-cse', get_template_directory() . '/languages');
  29. // Add default posts and comments RSS feed links to head.
  30. add_theme_support('automatic-feed-links');
  31. /*
  32. * Let WordPress manage the document title.
  33. * By adding theme support, we declare that this theme does not use a
  34. * hard-coded <title> tag in the document head, and expect WordPress to
  35. * provide it for us.
  36. */
  37. add_theme_support('title-tag');
  38. /*
  39. * Enable support for Post Thumbnails on posts and pages.
  40. *
  41. * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
  42. */
  43. add_theme_support('post-thumbnails');
  44. // This theme uses wp_nav_menu() in one location.
  45. register_nav_menus(
  46. array(
  47. 'menu-1' => esc_html__('Primary', 'uiu-cse'),
  48. )
  49. );
  50. /*
  51. * Switch default core markup for search form, comment form, and comments
  52. * to output valid HTML5.
  53. */
  54. add_theme_support(
  55. 'html5',
  56. array(
  57. 'search-form',
  58. 'comment-form',
  59. 'comment-list',
  60. 'gallery',
  61. 'caption',
  62. 'style',
  63. 'script',
  64. )
  65. );
  66. // Set up the WordPress core custom background feature.
  67. add_theme_support(
  68. 'custom-background',
  69. apply_filters(
  70. 'uiu_cse_custom_background_args',
  71. array(
  72. 'default-color' => 'ffffff',
  73. 'default-image' => '',
  74. )
  75. )
  76. );
  77. // Add theme support for selective refresh for widgets.
  78. add_theme_support('customize-selective-refresh-widgets');
  79. /**
  80. * Add support for core custom logo.
  81. *
  82. * @link https://codex.wordpress.org/Theme_Logo
  83. */
  84. add_theme_support(
  85. 'custom-logo',
  86. array(
  87. 'height' => 250,
  88. 'width' => 250,
  89. 'flex-width' => true,
  90. 'flex-height' => true,
  91. )
  92. );
  93. }
  94. add_action('after_setup_theme', 'uiu_cse_setup');
  95. /**
  96. * Set the content width in pixels, based on the theme's design and stylesheet.
  97. *
  98. * Priority 0 to make it available to lower priority callbacks.
  99. *
  100. * @global int $content_width
  101. */
  102. function uiu_cse_content_width()
  103. {
  104. $GLOBALS['content_width'] = apply_filters('uiu_cse_content_width', 640);
  105. }
  106. add_action('after_setup_theme', 'uiu_cse_content_width', 0);
  107. /**
  108. * Register widget area.
  109. *
  110. * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
  111. */
  112. function uiu_cse_widgets_init()
  113. {
  114. register_sidebar(
  115. array(
  116. 'name' => esc_html__('Sidebar', 'uiu-cse'),
  117. 'id' => 'sidebar-1',
  118. 'description' => esc_html__('Add widgets here.', 'uiu-cse'),
  119. 'before_widget' => '<section id="%1$s" class="widget %2$s">',
  120. 'after_widget' => '</section>',
  121. 'before_title' => '<h2 class="widget-title">',
  122. 'after_title' => '</h2>',
  123. )
  124. );
  125. }
  126. add_action('widgets_init', 'uiu_cse_widgets_init');
  127. /**
  128. * Enqueue scripts and styles.
  129. */
  130. function uiu_cse_scripts()
  131. {
  132. wp_enqueue_style('uiu-cse-style', get_stylesheet_uri(), array(), _S_VERSION);
  133. wp_style_add_data('uiu-cse-style', 'rtl', 'replace');
  134. wp_enqueue_style('uiu-cse-pickr', 'https://cdn.jsdelivr.net/npm/@simonwep/pickr/dist/themes/nano.min.css');
  135. wp_enqueue_style('uiu-cse-google-fonts-material-icon', 'https://fonts.googleapis.com/icon?family=Material+Icons');
  136. wp_enqueue_style('uiu-cse-google-fonts-material-symbols-outlined', 'https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0');
  137. wp_enqueue_style('uiu-cse-google-fonts-material+symbols+sharpt', 'https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp:opsz,wght,FILL,GRAD@48,400,0,0');
  138. wp_enqueue_script('uiu-cse-pickr-js', 'https://cdn.jsdelivr.net/npm/@simonwep/pickr/dist/pickr.min.js', array(), '');
  139. wp_enqueue_script('uiu-cse-settings-js', get_template_directory_uri() . '/js/theme-settings.js', array(), _S_VERSION, true);
  140. wp_enqueue_script('uiu-cse-navigation', get_template_directory_uri() . '/js/navigation.js', array(), _S_VERSION, true);
  141. if (is_singular() && comments_open() && get_option('thread_comments')) {
  142. wp_enqueue_script('comment-reply');
  143. }
  144. }
  145. add_action('wp_enqueue_scripts', 'uiu_cse_scripts');
  146. /**
  147. * Implement the Custom Header feature.
  148. */
  149. require get_template_directory() . '/inc/custom-header.php';
  150. /**
  151. * Custom template tags for this theme.
  152. */
  153. require get_template_directory() . '/inc/template-tags.php';
  154. /**
  155. * Functions which enhance the theme by hooking into WordPress.
  156. */
  157. require get_template_directory() . '/inc/template-functions.php';
  158. /**
  159. * Customizer additions.
  160. */
  161. require get_template_directory() . '/inc/customizer.php';
  162. /**
  163. * Load Jetpack compatibility file.
  164. */
  165. if (defined('JETPACK__VERSION')) {
  166. require get_template_directory() . '/inc/jetpack.php';
  167. }
  168. /**
  169. * Theme option and custom fields settings
  170. */
  171. // Custom Blocks
  172. include_once(get_stylesheet_directory() . '/inc/custom-blocks.php');
  173. // ACF
  174. include_once(get_template_directory() . '/inc/acf/acf.php');
  175. // ACF Settings
  176. include_once(get_template_directory() . '/inc/acf-settings.php');
  177. // Custom post type
  178. include_once(get_stylesheet_directory() . '/inc/custom-post-type.php');
  179. // Typeahead Settings
  180. // include_once( get_stylesheet_directory() . '/inc/wp-typeahead.php');
  181. // Widgets
  182. // include_once( get_stylesheet_directory() . '/inc/widgets.php' );
  183. // Menus
  184. // include_once( get_stylesheet_directory() . '/inc/menus.php' );
  185. // Theme Settings
  186. include_once(get_stylesheet_directory() . '/inc/theme-settings.php');
  187. // Shortcodes
  188. include_once(get_stylesheet_directory() . '/inc/shortcodes.php');
  189. // Fetch vimeo thumbnail on save - takes video ID as input
  190. function uiu_acf_update_user_id($value, $post_id, $field)
  191. {
  192. // only set a new value if the field is empty
  193. // if ($value == '') {
  194. // get video here
  195. $login_id = get_field('login_id');
  196. // fetch thumb url(s)
  197. $user_meta = file_get_contents("https://api.github.com/users/rousnay");
  198. $user_meta = json_decode($user_meta);
  199. $user_id = $user_meta[0]->id;
  200. // set value
  201. $value = "Rousnay";
  202. return $value;
  203. // } else {
  204. // return $value;
  205. // }
  206. }
  207. add_filter('acf/update_value/name=employeeid', 'uiu_acf_update_user_id', 10, 3);