Skip to content
View AndrewGehman's full-sized avatar

Block or report AndrewGehman

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. announcement-banner announcement-banner Public

    WordPress plugin that adds an announcement banner to the top or bottom of your site

    PHP

  2. find-my-custom-post-types find-my-custom-post-types Public

    WordPress plugin to find and display all the custom post types running on your WordPress site

    PHP

  3. Add Text Description before the Word... Add Text Description before the WordPress admin permalink
    1
    function action_edit_form_before_permalink($return){
    2
      return "<div class='url-description'>Make sure you use a really good url!!!!</div>" . $return;
    3
    }
    4
    add_filter( 'get_sample_permalink_html', 'action_edit_form_before_permalink' );
  4. Add Text to the Featured Image Meta ... Add Text to the Featured Image Meta Box in WordPress
    1
    //  Add text to the Featured Image Box
    2
    
                  
    3
    function ChangeFeaturedImageText( $content ) {
    4
    
                  
    5
        $img_size_text = "Size ratio: 400 x 300"; 
  5. Change the placeholder text of the W... Change the placeholder text of the WordPress Title
    1
    function ChangeTheTitlePlaceholder(){
    2
      return 'Put Your Awesome Title Here!';
    3
    }
    4
    
                  
    5
    add_filter( 'enter_title_here', 'ChangeTheTitlePlaceholder' );
  6. pure-css-slider pure-css-slider Public

    A simple CSS slider

    HTML