Skip to content
View kristarella's full-sized avatar
Block or Report

Block or report kristarella

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

  1. exifography exifography Public

    WordPress plugin to display photo exif data

    PHP 10 4

  2. Function to add your custom taxonomy... Function to add your custom taxonomy as a column in the All Posts view of a custom post type (where "location" is the custom post type and "state" is the taxonomy).
    1
    <?php
    2
    
                  
    3
    add_filter('manage_location_posts_columns' , 'add_post_columns');
    4
    add_action( 'manage_location_posts_custom_column' , 'state_column', 10, 2 );
    5
    
                  
  3. Automatically assign featured images... Automatically assign featured images to WordPress posts from the attached images.
    1
    <?php
    2
    
                  
    3
    function auto_featured_image() {
    4
    	global $post;
    5
    	if (!has_post_thumbnail($post->ID)) {
  4. drink-order drink-order Public

    A web page to order drinks at my house

    HTML