Snippets Collections
<script src=//use.fontawesome.com/96bc47e5c3.js></script>
// create Triler Post type



function create_trailer() {

	$labels = array(
		'name' => _x( 'Trailer', 'Post Type General Name'),
		'singular_name' => _x( 'Trailer', 'Post Type Singular Name'),
		'menu_n ame' => _x( 'Trailer', 'Admin Menu text'),
		'name_admin_bar' => _x( 'Trailer', 'Add New on Toolbar'),
		'archives' => __( 'Trailer Archives'),
		'attributes' => __( 'Trailer Attributes'),
		'parent_item_colon' => __( 'Parent Trailer:'),
		'all_items' => __( 'All Trailer'),
		'add_new_item' => __( 'Add New Trailer'),
		'add_new' => __( 'Add New'),
		'new_item' => __( 'New Trailer'),
		'edit_item' => __( 'Edit Trailer'),
		'update_item' => __( 'Update Trailer'),
		'view_item' => __( 'View Trailer'),
		'view_items' => __( 'View Trailer'),
		'search_items' => __( 'Search Trailer'),
		'not_found' => __( 'Not found'),
		'not_found_in_trash' => __( 'Not found in Trash'),
		'featured_image' => __( 'Featured Image'),
		'set_featured_image' => __( 'Set featured image'),
		'remove_featured_image' => __( 'Remove featured image'),
		'use_featured_image' => __( 'Use as featured image'),
		'insert_into_item' => __( 'Insert into Trailer'),
		'uploaded_to_this_item' => __( 'Uploaded to this Trailer'),
		'items_list' => __( 'Trailer list'),
		'items_list_navigation' => __( 'Trailer list navigation'),
		'filter_items_list' => __( 'Filter Trailer list'),
	);
	$args = array(
		'label' => __( 'Trailer'),
		'description' => __( ''),
		'labels' => $labels,
		'menu_icon' => 'dashicons-video-alt',
		'supports' => array('title', 'editor','thumbnail','page-attributes'),
		'taxonomies' => array(),
		'public' => true,
		'show_ui' => true,
		'show_in_menu' => true,
		'menu_position' => 5,
		'show_in_admin_bar' => true,
		'show_in_nav_menus' => true,
		'can_export' => true,
		'has_archive' => true,
		'hierarchical' => false,
		'exclude_from_search' => false,
		'show_in_rest' => true,
		'publicly_queryable' => true,
		'capability_type' => 'post',
	);
	register_post_type( 'trailer', $args );

}
add_action( 'init', 'create_trailer');


function trailer_loop()
{
    ob_start();
    wp_reset_postdata();


    $arg = array(
        'post_type' => 'trailer',
        'posts_per_page' => -1,
        'order' => 'ASC',
    );

    $themeslider = new WP_Query($arg);
	$y = 1;
?>

    <div class="main_trailer_row">
        <?php if ($themeslider->have_posts()) : ?>
            <?php while ($themeslider->have_posts()) : ?>
                <?php $themeslider->the_post(); ?>
					<div class="container-fluid trailer_innerMain" style="background:url( <?php if ( has_post_thumbnail() ) { the_post_thumbnail_url('full');} ?> )">
						<div class="row align-item-end">
							<div class="col-md-6">
								<div class="tailer_img">
									<h4><?php the_title(); ?></h4>
									<div class="home_content"><?php echo wp_trim_words( get_the_content(), 40, '' ); ?></div>
								</div>
							</div>
							<div class="col-md-6">
								<div class="video-name">
								<span>Video</span>
								</div>
								<a href="<?php the_field('traile_url'); ?>" target="_blank" class="video-image">
									<div class="trailer-cont">
										<img class="img-fluid rotating" src="<?php the_field('traile_img'); ?>" alt="">
									</div>
								</a>
							</div>
						</div>
					</div>
            <?php endwhile; ?>
        <?php endif; ?>
    </div>
<?php
    wp_reset_postdata();
    return '' . ob_get_clean();
}
add_shortcode( 'trailer_code', 'trailer_loop' );





// js
jQuery('.main_movies_row').slick({
  slidesToShow:4,
  slidesToScroll: 1,
  autoplay: true,
  arrows: true,
  centerMode: true,
  dots: false,
	nextArrow:"<span class='list-icon fas fa-arrow-left'></span>",
  prevArrow:"<span class='list-icon fas fa-arrow-right'></span>",
  adaptiveHeight: true,
  autoplaySpeed: 3000,
  responsive: [
    {
      breakpoint: 1024,
      settings: {
       slidesToShow: 2
      }
    },
    {
      breakpoint: 768,
      settings: {
        slidesToShow: 2
      }
    },
    {
      breakpoint: 480,
      settings: {
       slidesToShow: 1
      }
    }
  ]
});

jQuery('.main_trailer_row').slick({
  slidesToShow:1,
  slidesToScroll: 1,
  autoplay: true,
  arrows: true,
  centerMode: false,
  dots: true,
	nextArrow:"<span class='list-icon fas fa-arrow-right'></span>",
  prevArrow:"<span class='list-icon fas fa-arrow-left'></span>",
  adaptiveHeight: false,
  autoplaySpeed: 3000,
});
function add_google_tag() {?>
  
<!-- Google tag (gtag.js) --> 
<script async src="https://www.googletagmanager.com/gtag/js?id=G-H75ENPM26K"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-H75ENPM26K'); </script>

<?php 
    
}
add_action( 'wp_head', 'add_google_tag' );
function add_google_tag() {?>
  
<!-- Google tag (gtag.js) --> 
<script async src="https://www.googletagmanager.com/gtag/js?id=G-H75ENPM26K"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-H75ENPM26K'); </script>

<?php 
    
}
add_action( 'wp_head', 'add_google_tag' );
<?php 
    if ( is_home() || is_front_page() ) { ?>
<?php } else { ?>
    <div class="inner-banner" style="background:url(
    <?php
    if (has_post_thumbnail()) { ?>
        <?php echo get_the_post_thumbnail_url($post->ID, 'full') ?>
    <?php } else { ?>
        <?php bloginfo('stylesheet_directory'); ?>/images/default.jpg<?php } ?>) no-repeat center center / cover;">
        <h2><?php the_title(); ?></h2>
    </div>

<?php }?>
///short code 
[wpens_easy_newsletter firstname="no" lastname="no" button_text="SIGN UP"]

var input = document.querySelectorAll('.wpens_email');
input.forEach(function(single){
   single.setAttribute('placeholder', 'YOUR EMAIL');
});


//for elementor
function ti_custom_javascript() {
    ?>
        <script>
          var input = document.querySelectorAll('.wpens_email');
input.forEach(function(single){
   single.setAttribute('placeholder', 'Enter your email to subscribe');
});
        </script>
    <?php
}
add_action('wp_footer', 'ti_custom_javascript');
// ADD SHORTCODE [social_media];
add_shortcode('social_media', 'codex_social_media');
function codex_social_media() {
ob_start();
    wp_reset_postdata(); 
    $facebook = get_field('facebook', 'option');
    $twitter = get_field('twitter', 'option');
    $google_plus =  get_field('google_plus', 'option');
    ?>

<div class="social-icons">
	<ul>
	    <?php
	    if($facebook == true){ ?>
	          <li><a href="<?php the_field('facebook_page_url', 'option'); ?>" target="_blank"><i class="fa fa-facebook"></i></a></li>
	   <?php } ?>
      <?php
	    if($twitter == true){ ?>
        <li><a href="<?php the_field('twitter_page_url', 'option'); ?>" target="_blank"><i class="fa fa-twitter"></i></a></li>
        <?php } ?>
        <?php
	    if($google_plus == true){ ?>
        <li><a href="<?php the_field('google_plus_page_url', 'option'); ?>" target="_blank"><i class="fa fa-google-plus"></i></a></li>
        <?php } ?>
	</ul>

</div>  <!-- Social Media  -->
<!-- -----------------------marquee   ---------------------- -->
        <section class="marquee-sec">
            <div class="container">
                <div class="row">
                    <div class="col-md-12">
                    <marquee width="100%" direction="left" height="22px">
                        <p>
                Section 102(b) of the DMCA amends section 104 of the Copyright Act and adds new definitions to section 101 of the Copyright Act in order to extend the protection of U.S. law to those                     works required to be protected under the WCT and the WPPT.
                        </p>
                    </marquee>
                    </div>
                 </div>
            </div>
        </section>
====
section.marquee-sec {
    background-color: #f9c511;
    padding: 10px;
    position: sticky;
    top: 0;
    z-index: 10;
}
@font-face {
    font-family: "ClashDisplay";
    src: url("fonts/ClashDisplay-Regular.woff");
    font-weight: 400;
}
.section-2.section3 .section2-wrap .container > div:nth-child(2) .box-wrap > div:nth-child(even) .sec2-box
add_shortcode('contact_us', 'contact_usFunc');
function contact_usFunc() { ?>
<div class="footer-item">
	<h6 class="widgettitle"><?php _e('Our Office') ?></h6>
<ul class="contact_info">
	<li>
		<div class="info_wrapper">
			<div class="info_img">
				<?php $imgurl = get_field('address_image' ,'option'); ?>
				<img src="<?php echo $imgurl; ?>">
			</div>
			<div class="info_content">
				<p><strong>ADDRESS</strong><?php echo get_field('company_address','option'); ?></p>
			</div>
		</div>
	</li>
	<li>
		<div class="info_wrapper">
			<div class="info_img">
				<?php $tel_image =  get_field('tel_image'  ,'option'); ?>
				<img src="<?php echo $tel_image; ?>">
			</div>
			<div class="info_content">
				<p><strong>Call Us 24/7</strong></p><a href="tel:<?php echo get_field('company_number_title','option'); ?>"><?php echo get_field('company_number_title','option'); ?></a>
			</div>
		</div>
	</li>
	<li>
		<div class="info_wrapper">
			<div class="info_img">
				<?php $email_image =  get_field('email_image' ,'option'); ?>
				<img src="<?php echo $email_image; ?>">
			</div>
			<div class="info_content">
				<p><strong>EMAIL</strong></p><a href="mailto:<?php echo get_field('company_email','option'); ?>"><?php echo get_field('company_email','option'); ?></a>
			</div>
		</div>
	</li>
</ul>
</div>
<?php }
$(document).ready(function(){
  $('.yourclass').trigger('click');
});
<?php
    /**
     Template Name: Blog
     */
    
    get_header(); ?>
<blog>
<?php 

if( get_field('page_builder') ){
        $page_builder = get_field('page_builder');
        //echo print_r( $page_builder);

        foreach ($page_builder as $key => $section) {
            include('inc/inc-'.$section['acf_fc_layout'].'.php');
        }
    } 

?>


<div class="blog-section with-bg">
    <div class="container">
        <div class="row">
            <div class="col-md-7">
                <div id="blog_loop" class="row">
                    <?php
                        // WP_Query arguments
                        $args = array(
                          'post_type'            => 'post',
                          'post_status'          => 'publish',
                          'order'                => 'DESC',
                          'posts_per_page'     =>  -1,
                        );
                          $po = new WP_Query($args);
                         ?>
                    <?php if ($po->have_posts() ): ?>
                    <?php while ( $po->have_posts() ) : ?>
                    <?php $po->the_post(); ?>  
                    <div class="col-md-6 col-sm-12 item_loop">
                        <div class="blog-item">
                            <div class="thumbnail-blog">
                                <a href="<?php the_permalink(); ?>" >
                                    <?php $thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'full' );?>
                                    <div class="image" style="background-image: url('<?php echo $thumb['0'];?>')"></div>
                                </a>
                            </div>
                            <div class="blog-content">
                                <h3 class="title"><a href="<?php the_permalink(); ?>" ><?php the_title(); ?></a></h3>
                                <div class="except">
                                    <?php $content=get_the_content(); echo substr($content,0, 250)." ..."; ?>
                                </div>
                                <div class="meta"> 
                                  <div class="asign-author"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/icon-author.png" width="19" height="19" alt=""> <?php the_author(); ?> </div> 
                                  <div class="entry-date"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/icon-calander.png" width="18" height="18" alt=""> <?php echo get_the_date(); ?></div>
                                </div>
                            </div>
                        </div>
                    </div> 
                    <?php endwhile; ?>
                    <?php  endif; ?>
                </div>
            </div> <!-- end col-md-7 -->
            <div class="col-md-4">
               <?php get_sidebar(); ?>
                <!-- sidebar -->
            </div>
        </div>
        <div class="row">
            <div class="col-md-12">
                <div class="stl-head text-center">
                    <div class="sub-head">latest blogs</div>
                    <h3>Trending <span class="multicol">Stories</span></h3>
                </div>
                <div id="blog_trend" class="row">
                    <?php
                        // WP_Query arguments
                        $args = array(
                          'post_type'            => 'post',
                          'post_status'          => 'publish',
                          'order'                => 'DESC',
                          'posts_per_page'     =>  -1,
                          'tax_query'        => array(
                              array(
                                  'taxonomy' => 'category',
                                  'field'    => 'slug',
                                  'terms'    => 'trending-stories',
                              ),
                          ),
                        );
                          $po = new WP_Query($args);
                         ?>
                    <?php if ($po->have_posts() ): ?>
                    <?php while ( $po->have_posts() ) : ?>
                    <?php $po->the_post(); ?>  
                        <div class="col-md-4 col-sm-12 trending">
                            <div class="blog-item">
                                <div class="thumbnail-blog">
                                    <a href="<?php the_permalink(); ?>" >
                                        <?php $thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'full' );?>
                                        <div class="image" style="background-image: url('<?php echo $thumb['0'];?>')"></div>
                                    </a>
                                </div>
                                <div class="blog-content">
                                    <h3 class="title"><a href="<?php the_permalink(); ?>" ><?php the_title(); ?></a></h3>
                                    <div class="except">
                                        <?php $content=get_the_content(); echo substr($content,0, 250)." ..."; ?>
                                    </div>
                                    <div class="meta"> 
                                      <div class="asign-author"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/icon-author.png" width="19" height="19" alt=""> <?php the_author(); ?> </div> 
                                      <div class="entry-date"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/icon-calander.png" width="18" height="18" alt=""> <?php echo get_the_date(); ?></div>
                                    </div>
                                </div>
                            </div>
                        </div>
                    <?php endwhile; ?>
                    <?php  endif; ?> 
                </div>
            </div>
        </div>
    </div>
</div>
</blog>
</section>
<?php get_footer(); ?>
//file name 
single.(postname).php


<?php get_header();
// $add_tours = get_field('add_tours');
$tour_imformation = get_field('tour_information');
$destination_names = $tour_imformation['destination_name'];
$hotel_names = $tour_imformation['featured_hotels'];


?>
<main class="single-destination">
	<!-- ========================= Banner ========================== -->
	<div class="banner" style="background-image: url(<?php the_post_thumbnail_url() ?>);">
		<div class="title">
			<h1><?php the_title(); ?></h1>
		</div>
	</div>

	<!-- ============================ grid sec =========================== -->

	<section class="grid-sec">
		<div class="wrapper-container">
			<div class="wrapper">

				<div class="wapper-item">
					<div class="tab-sec">
						<div class="tabs">
							<ul id="tabs-nav">
								<li><a href="#tab1">INFORMATION</a></li>
								<li><a href="#tab2">TOUR PLAN</a></li>
								<li><a href="#tab3">LOCATION</a></li>
								<li><a href="#tab4">GALLERY</a></li>
								<li><a href="#tab5">REVIEWS</a></li>
							</ul> <!-- END tabs-nav -->

							<div id="tabs-content">
								<div id="tab1" class="tab-content">
									<div class="tab-data">
										<h2>INFORMATION</h2>
										<p><?php the_content(); ?></p>
										<ul>
											<li>
												<ul>
													<li><strong>Destination</strong></li>
													<li>
														<ul>

															<?php
															foreach ($destination_names as $key => $value) {
																$destination_cat_names = get_the_category_by_ID($value);
																$destination_cat_url = get_category_link($value);
															?>
																<li>
																	<i class="fa-solid fa-map-location"></i><a href="<?php echo $destination_cat_url; ?>" title="<?php echo $destination_cat_names; ?>"><?php echo $destination_cat_names; ?></a>
																</li>
															<?php }
															?>
														</ul>
													</li>
												</ul>
											</li>
											<li>
												<ul>
													<li><strong>Includes</strong></li>
													<li><?php echo $tour_imformation['include']; ?></li>
												</ul>
											</li>
											<li>
												<ul>
													<li><strong>Excludes</strong></li>
													<li><?php echo $tour_imformation['excludes']; ?></li>	
												</ul>
											</li>
											<li>
												<ul>
													<li><strong>Featured Hotels</strong></li>
													<li>
														<ul>
															<?php
															foreach ($hotel_names as $key => $value) { ?>
																<li>
																	<i class="fa-solid fa-hotel"></i><a href="<?php the_permalink($value); ?>" title="<?php the_title_attribute($value); ?>"><?php echo get_the_title($value); ?></a>
																</li>
															<?php }
															?>
														</ul>

													</li>
												</ul>
											</li>
										</ul>
										<?php echo do_shortcode('[gravityform id="1" title="false" description="false" ajax="true"]') ?>
									</div>
								</div>
								<div id="tab2" class="tab-content">
									<div class="tour-plan-data">
										<ul>
											<li>
												<h2>Itinerary Details</h2>
												<p>A detailed itinerary will be distributed 45 days prior to departure date. Please use the trip highlights in the interim.</p>
											</li>
										</ul>
									</div>
								</div>
								<div id="tab3" class="tab-content">
									<div class="location-data">
										<h2>LOCATION</h2>
										<div class="map">
											<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d210702.826143149!2d150.47390740491318!3d-34.39545731740385!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x6b130871b4cadc43%3A0x238c1ad4d5e9ac69!2sUpper%20Nepean%2C%20New%20South%20Wales%2C%20Australia!5e0!3m2!1sen!2s!4v1667428646506!5m2!1sen!2s" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
										</div>
									</div>
								</div>
								<div id="tab4" class="tab-content">
									<div class="gallery-data">
										<ul>
											<li><a href="" class="fancybox"><img src="<?php echo get_stylesheet_directory_uri() ?>/images/01.jpg" alt=""></a></li>
											<li><a href="" class="fancybox"><img src="<?php echo get_stylesheet_directory_uri() ?>/images/02.jpg" alt=""></a></li>
											<li><a href="" class="fancybox"><img src="<?php echo get_stylesheet_directory_uri() ?>/images/03.jpg" alt=""></a></li>
											<li><a href="" class="fancybox"><img src="<?php echo get_stylesheet_directory_uri() ?>/images/04.jpg" alt=""></a></li>
											<li><a href="" class="fancybox"><img src="<?php echo get_stylesheet_directory_uri() ?>/images/05.jpg" alt=""></a></li>
											<li><a href="" class="fancybox"><img src="<?php echo get_stylesheet_directory_uri() ?>/images/06.jpg" alt=""></a></li>

										</ul>
									</div>
								</div>
								<div id="tab5" class="tab-content">
									<?php echo do_shortcode('[gravityform id="2" title="false" description="false"]') ?>
								</div>
							</div> <!-- END tabs-content -->

						</div> <!-- END tabs -->
					</div>
				</div>
			</div>
		</div>
	</section>



</main>

<?php get_footer();
function create_product() {

$labels = array(
    'name' => _x( 'Product', 'Post Type General Name'),
    'singular_name' => _x( 'Product', 'Post Type Singular Name'),
    'menu_n ame' => _x( 'Products', 'Admin Menu text'),
    'name_admin_bar' => _x( 'Products', 'Add New on Toolbar'),
    'archives' => __( 'Products Archives'),
    'attributes' => __( 'Products Attributes'),
    'parent_item_colon' => __( 'Parent Products:'),
    'all_items' => __( 'All Products'),
    'add_new_item' => __( 'Add New Products'),
    'add_new' => __( 'Add New'),
    'new_item' => __( 'New Products'),
    'edit_item' => __( 'Edit Products'),
    'update_item' => __( 'Update Products'),
    'view_item' => __( 'View Products'),
    'view_items' => __( 'View Products'),
    'search_items' => __( 'Search Products'),
    'not_found' => __( 'Not found'),
    'not_found_in_trash' => __( 'Not found in Trash'),
    'featured_image' => __( 'Featured Image'),
    'set_featured_image' => __( 'Set featured image'),
    'remove_featured_image' => __( 'Remove featured image'),
    'use_featured_image' => __( 'Use as featured image'),
    'insert_into_item' => __( 'Insert into Products'),
    'uploaded_to_this_item' => __( 'Uploaded to this Products'),
    'items_list' => __( 'Products list'),
    'items_list_navigation' => __( 'Products list navigation'),
    'filter_items_list' => __( 'Filter Products list'),
);
$args = array(
    'label' => __( 'Products'),
    'description' => __( ''),
    'labels' => $labels,
    'menu_icon' => 'dashicons-admin-page',
    'supports' => array('title', 'editor', 'excerpt', 'thumbnail','page-attributes'),
    'taxonomies' => array(),
    'public' => true,
    'show_ui' => true,
    'show_in_menu' => true,
    'menu_position' => 5,
    'show_in_admin_bar' => true,
    'show_in_nav_menus' => true,
    'can_export' => true,
    'has_archive' => true,
    'hierarchical' => false,
    'exclude_from_search' => false,
    'show_in_rest' => true,
    'publicly_queryable' => true,
    'capability_type' => 'post',
);
register_post_type( 'products', $args );

}
add_action( 'init', 'create_product');
function product_loop()
{
ob_start();
wp_reset_postdata();


$arg = array(
    'post_type' => 'products',
    'posts_per_page' => -1,
);

$themeslider = new WP_Query($arg);
?>

<div class="product_slider">
    <?php if ($themeslider->have_posts()) : ?>
        <?php while ($themeslider->have_posts()) : ?>
            <?php $themeslider->the_post();
            $url = wp_get_attachment_url(get_post_thumbnail_id($themeslider->ID));
            ?>
                <div class="cbd_main">
                    <div class="cbd_img">
                        <?php $url = wp_get_attachment_url(get_post_thumbnail_id($themeslider->ID)); ?>
                        <img src="<?php echo $url; ?>">
                    </div>
                    <div class="cbd_inner">
                        <h1><?php the_title(); ?></h1>
                        <div class="home_content"><?php echo wp_trim_words( get_the_content(), 40, '' ); ?></div>
                    </div>
                </div>

        <?php endwhile; ?>
    <?php endif; ?>
</div>
<?php
wp_reset_postdata();
return '' . ob_get_clean();
}
add_shortcode( 'product_code', 'product_loop' );


//////////////////////jss

jQuery('.product_slider').slick({
  dots: false,
  infinite: true,
	autoplay: false,
	centerPadding:'100px',
	arrows: false,
  speed: 300,
	centerMode: true,
 slidesToShow: 3,
 slidesToScroll: 1,
 responsive: [
   {
     breakpoint: 1024,
     settings: {
       slidesToShow: 3,
       slidesToScroll: 1,
       infinite: false,
       dots: false
     }
   },
   {
     breakpoint: 600,
     settings: {
       slidesToShow: 3,
       slidesToScroll: 1
     }
   },
   {
     breakpoint: 480,
     settings: {
       slidesToShow: 1,
       slidesToScroll: 1
     }
   }
 ]
});

star

Tue Jan 31 2023 19:21:41 GMT+0000 (Coordinated Universal Time)

#function.php #js
star

Tue Jan 24 2023 23:30:13 GMT+0000 (Coordinated Universal Time)

#function.php #js
star

Mon Jan 23 2023 18:10:36 GMT+0000 (Coordinated Universal Time)

#function.php #js
star

Fri Jan 13 2023 21:28:54 GMT+0000 (Coordinated Universal Time)

#function.php #js
star

Wed Dec 14 2022 23:36:08 GMT+0000 (Coordinated Universal Time)

#function.php #js
star

Fri Dec 09 2022 22:18:12 GMT+0000 (Coordinated Universal Time)

#function.php #js
star

Fri Dec 02 2022 22:19:04 GMT+0000 (Coordinated Universal Time)

#function.php #js
star

Fri Dec 02 2022 00:54:30 GMT+0000 (Coordinated Universal Time)

#function.php #js
star

Wed Nov 30 2022 17:53:55 GMT+0000 (Coordinated Universal Time)

#function.php #js
star

Tue Nov 29 2022 00:24:19 GMT+0000 (Coordinated Universal Time)

#function.php #js
star

Fri Nov 25 2022 18:29:29 GMT+0000 (Coordinated Universal Time)

#function.php #js
star

Thu Nov 24 2022 23:45:10 GMT+0000 (Coordinated Universal Time)

#function.php #js
star

Tue Nov 22 2022 21:27:22 GMT+0000 (Coordinated Universal Time)

#function.php #js
star

Wed Nov 09 2022 19:34:52 GMT+0000 (Coordinated Universal Time)

#function.php #js
star

Thu Nov 03 2022 22:28:41 GMT+0000 (Coordinated Universal Time)

#function.php #js

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension