This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Change the default Login error message | |
*/ | |
function mytheme_login_error_msg() { | |
return 'Your username or password is incorrect.'; | |
} | |
add_filter( 'login_errors', 'mytheme_login_error_msg' ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Remove the Site Health Dashboard Widget | |
*/ | |
function ephemeris_remove_site_health_dashboard_widget() { | |
remove_meta_box( 'dashboard_site_health', 'dashboard', 'normal' ); | |
} | |
add_action( 'wp_dashboard_setup', 'ephemeris_remove_site_health_dashboard_widget' ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* If you have a child theme that has had its stylesheet enqueued from within the main Parent theme, | |
* and you wish to update the version number that’s appended to the url, you can include this in your | |
* child theme functions.php file. | |
* | |
* Obviously, change the version number (‘6.0.0’ in this example) to whatever is appropriate for you, | |
* along with comparing the approriate stylesheet handle ('ephemeris-style' in this example) | |
* | |
* Where: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Convert a phone number containing words, to a plain number. e.g. '1800 CALLME' == '1800225563' | |
*/ | |
function ephemeris_phone_word_to_number( $phone_number ) { | |
$phone_word_pattern = array( | |
'a' => '2', | |
'b' => '2', | |
'c' => '2', | |
'd' => '3', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Turn off WooCommerce Marketplace suggestions | |
*/ | |
add_filter( 'woocommerce_allow_marketplace_suggestions', '__return_false' ); | |
/** | |
* Turn off WooCommerce Feature Plugin notice | |
*/ | |
add_filter( 'woocommerce_show_admin_notice', '__return_false', 'wc_admin_feature_plugin_notice' ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Filter our social icons to add an email icon on the end | |
*/ | |
function ephemeris_add_email_to_social_icons( $social_list ) { | |
$social_list[] = sprintf( '<li class="%1$s"><a href="%2$s" title="%3$s"><i class="%4$s"></i><span class="assistive-text">%3$s</span></a></li>', | |
'email', | |
esc_url( home_url( '/contact' ) ), | |
__( 'Get in touch', 'ephemeris' ), | |
'far fa-envelope' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Hide the progress count on the Site Health screen | |
*/ | |
function mytheme_load_custom_wp_admin_style() { | |
$current_screen = get_current_screen(); | |
if ( strpos( $current_screen->base, 'site-health' ) === false ) { | |
return; | |
} else { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Add an action when WP Admin initialises to register our Custom Post Type | |
*/ | |
function mdsgns_create_custom_post_types() { | |
$types = array( | |
// Where the magic happens | |
array( | |
'the_type' => 'store', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Theme Name: Ephemeris | |
Description: Used to style the Block Editor (Gutenberg) | |
*/ | |
/* Custom Colours */ | |
/* Eclipse */ | |
.edit-post-visual-editor .has-eclipse-background-color { | |
background-color: #3a3a3a; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Change the Collation of all tables in a WordPress Database | |
* | |
* WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! | |
* Take a backup first, and carefully test the results of this code. | |
* USE OF THIS SCRIPT IS ENTIRELY AT YOUR OWN RISK. I/We accept no liability from its use. | |
* | |
* USE: | |
* Simply place this script in the root of your WordPress site and run it from your browser. |