Skip to content

Instantly share code, notes, and snippets.

@jrobinsonc
Last active September 6, 2018 18:16
Show Gist options
  • Select an option

  • Save jrobinsonc/4c3c871c2c7e42e9c7567794215daa67 to your computer and use it in GitHub Desktop.

Select an option

Save jrobinsonc/4c3c871c2c7e42e9c7567794215daa67 to your computer and use it in GitHub Desktop.

Adding favicon to header:

add_action('wp_head', function () {
    printf('<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">');
});

Do logging programmatically

$user_id = 1;
$remember = true;
wp_set_auth_cookie($user_id, $remember);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment