Explore all the pages we have on our website. Find information about our services, company, and more.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry standard dummy text ever since the 1500, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960 with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.' . esc_html__('Your demo import has been completed successfully.', 'aqeeq-agency') . '
'; echo '' . esc_html__('View Site', 'aqeeq-agency') . ''; //end // Top Bar // set_theme_mod( 'aqeeq_agency_header_btn_text', 'Get Free Quote' ); set_theme_mod( 'aqeeq_agency_header_btn_link', '#' ); // slider section start // set_theme_mod( 'aqeeq_agency_top_button_url', '#' ); set_theme_mod( 'aqeeq_agency_slider_button_text', 'KNOW MORE' ); set_theme_mod( 'aqeeq_agency_slidersmall_section_title', 'A BIG APPORTUNITY FOR' ); for($aqeeq_agency_i=1;$aqeeq_agency_i<=3;$aqeeq_agency_i++){ $aqeeq_agency_slider_title = 'YOUR BUSINESS GROWTH'; $aqeeq_agency_slider_content = 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry standard dummy text ever since the 1500, when an unknown printer took a galley of type and scrambled it to make a type specimen book.'; // Create post object $my_post = array( 'post_title' => wp_strip_all_tags( $aqeeq_agency_slider_title ), 'post_content' => $aqeeq_agency_slider_content, 'post_status' => 'publish', 'post_type' => 'page', ); // Insert the post into the database $aqeeq_agency_post_id = wp_insert_post( $my_post ); if ($aqeeq_agency_post_id) { // Set the theme mod for the slider page set_theme_mod('aqeeq_agency_slider_page' . $aqeeq_agency_i, $aqeeq_agency_post_id); $aqeeq_agency_image_url = get_template_directory_uri().'/assets/images/slider'.$aqeeq_agency_i.'.png'; $aqeeq_agency_image_id = media_sideload_image($aqeeq_agency_image_url, $aqeeq_agency_post_id, null, 'id'); if (!is_wp_error($aqeeq_agency_image_id)) { // Set the downloaded image as the post's featured image set_post_thumbnail($aqeeq_agency_post_id, $aqeeq_agency_image_id); } } } // Features Section // set_theme_mod( 'aqeeq_agency_features_small_title', 'OUR FEATURES' ); set_theme_mod( 'aqeeq_agency_features_heading', 'UNIQUE SOLUTIONS FOR YOUR PROBLEM' ); set_theme_mod( 'aqeeq_agency_featured_content', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry standard dummy text ever since the 1500, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries' ); set_theme_mod('aqeeq_agency_features_category', 'category1'); // Define post category names and post titles $aqeeq_agency_category_names = array('category1', 'category2'); $aqeeq_agency_title_array = array( array("EMAIL MARKETING", "RESEARCH REPORTS", "BRANDING", "SOCIAL MARKETING"), array("SOCIAL MARKETING", "RESEARCH REPORTS", "BRANDING", "EMAIL MARKETING"), ); foreach ($aqeeq_agency_category_names as $aqeeq_agency_index => $aqeeq_agency_category_name) { // Create or retrieve the post category term ID $aqeeq_agency_term = term_exists($aqeeq_agency_category_name, 'category'); if ($aqeeq_agency_term === 0 || $aqeeq_agency_term === null) { // If the term does not exist, create it $aqeeq_agency_term = wp_insert_term($aqeeq_agency_category_name, 'category'); } if (is_wp_error($aqeeq_agency_term)) { error_log('Error creating category: ' . $aqeeq_agency_term->get_error_message()); continue; // Skip to the next iteration if category creation fails } for ($aqeeq_agency_i = 0; $aqeeq_agency_i < 4; $aqeeq_agency_i++) { // Create post content $aqeeq_agency_title = $aqeeq_agency_title_array[$aqeeq_agency_index][$aqeeq_agency_i]; $aqeeq_agency_content = 'Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. '; // Create post post object $aqeeq_agency_my_post = array( 'post_title' => wp_strip_all_tags($aqeeq_agency_title), 'post_content' => $aqeeq_agency_content, 'post_status' => 'publish', 'post_type' => 'post', // Post type set to 'post' ); // Insert the post into the database $aqeeq_agency_post_id = wp_insert_post($aqeeq_agency_my_post); if (is_wp_error($aqeeq_agency_post_id)) { error_log('Error creating post: ' . $aqeeq_agency_post_id->get_error_message()); continue; // Skip to the next post if creation fails } // Assign the category to the post wp_set_post_categories($aqeeq_agency_post_id, array((int)$aqeeq_agency_term['term_id'])); // Handle the featured image using media_sideload_image $aqeeq_agency_image_url = get_template_directory_uri() . '/assets/images/features' . ($aqeeq_agency_i + 1) . '.png'; $aqeeq_agency_image_id = media_sideload_image($aqeeq_agency_image_url, $aqeeq_agency_post_id, null, 'id'); if (is_wp_error($aqeeq_agency_image_id)) { error_log('Error downloading image: ' . $aqeeq_agency_image_id->get_error_message()); continue; // Skip to the next post if image download fails } // Assign featured image to post set_post_thumbnail($aqeeq_agency_post_id, $aqeeq_agency_image_id); } } //Copyright Text set_theme_mod( 'aqeeq_agency_footer_text', 'By VWThemes' ); } ?>