Skip to content

Instantly share code, notes, and snippets.

View luc-constantin's full-sized avatar
🏠
Working from home

Luc Constantin luc-constantin

🏠
Working from home
View GitHub Profile
@luc-constantin
luc-constantin / functions.php
Created January 27, 2024 06:08 — forked from kanakiyajay/functions.php
Collections of code for your wordpress functions.php file
// CUSTOM ADMIN MENU LINK FOR ALL SETTINGS
function all_settings_link() {
add_options_page(__('All Settings'), __('All Settings'), 'administrator', 'options.php');
}
add_action('admin_menu', 'all_settings_link');
add_filter( 'login_headerurl', 'namespace_login_headerurl' );
/**
* Replaces the login header logo URL
*