Skip to content
View emkr's full-sized avatar
🖖
...
🖖
...

Block or report emkr

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. theme-webpack-wordpress theme-webpack-wordpress Public

    SCSS 2 4

  2. WordPress - Pulls blog posts from da... WordPress - Pulls blog posts from database by year and month. Then displays it as an unordered list, with the year as the parent ul, and the month as the children.
    1
    <?php 
    2
    
                  
    3
    $results = $wpdb->get_results("
    4
        SELECT p.ID, YEAR(p.post_date) as year, MONTHNAME(p.post_date) as monthname, MONTH(p.post_date) as month
    5
        FROM wp_posts p