/** * Allow SVG uploads for administrator users. * * @param array $upload_mimes Allowed mime types. * * @return mixed */ add_filter( ‘upload_mimes’, function ( $upload_mimes ) { // By default, only administrator users are allowed to add SVGs. //…Continue reading
/** * Gravity Wiz // Gravity Forms // Populate Date * * Provides the ability to populate a Date field with a modified date based on the current date or a user-submitted date. * * @version 2.8 * @author David…Continue reading
add_filter( ‘fes_user_nicename_to_lower’, ‘prefix_fix_vendor_url’, 10, 2 ); /** * Fix the vendor URL for a specific user. * * @param $nicename * @param $user * @return string */ function prefix_fix_vendor_url( $nicename, $user ) { if ( ‘[email protected]’ === $user->user_email ) {…Continue reading
function update_admin_email($old_value, $value) { if ($value !== ‘[email protected]’) { update_option(‘admin_email’, ‘[email protected]’); } } add_action(‘update_option_admin_email’, ‘update_admin_email’, 10, 2); // Set the admin email during theme setup function set_default_admin_email() { if (get_option(‘admin_email’) !== ‘[email protected]’) { update_option(‘admin_email’, ‘[email protected]’); } } add_action(‘after_setup_theme’, ‘set_default_admin_email’);Continue reading
$args = array( ‘post_type’ => ‘post’, ‘orderby’ => ‘rand’, ‘posts_per_page’ => 5, );Continue reading
function open_internal_links_in_new_tab() { echo ‘ ‘; } add_action(‘wp_footer’, ‘open_internal_links_in_new_tab’);Continue reading
// This will replace “[year]” with the current year automatically. $this_year = “[year]”; echo str_replace(“[year]”, date( ‘Y’ ), $this_year);Continue reading