Skip to content
View timstl's full-sized avatar

Block or report timstl

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. basetheme-scss basetheme-scss Public

    Basetheme is a starter WordPress theme to build from. It relies heavily on Bootstrap and ACF.

    PHP 2 2

  2. basetheme-helper-plugin basetheme-helper-plugin Public

    Base functionality to use across sites. Moves some functionality from Basetheme into plugin for use with other themes.

    PHP 2 1

  3. WP-Engine-Toolkit WP-Engine-Toolkit Public

    A toolkit for managing sites using the WPEngine API.

    JavaScript 3 1

  4. distributor-yoast-sync distributor-yoast-sync Public

    Extends the Distributor plugin by 10up to sync Yoast SEO social images between sites.

    PHP

  5. WordPress .gitignore template; A com... WordPress .gitignore template; A compilation of many examples customized to fit our needs.
    1
    # ignore everything in the root except the "wp-content" directory.
    2
    /*
    3
    !wp-content/
    4
    
                  
    5
    # ignore everything in the "wp-content" directory, except:
  6. Exclude featured posts from main Wor... Exclude featured posts from main WordPress blog loop
    1
    /**
    2
     * Exclude featured posts from main blog loop
    3
     */
    4
    function bt_exclude_featured_from_blog_index( $query ) {
    5
    	if ( ! is_admin() && $query->is_home() && $query->is_main_query() ) {