Disable Plugin & Theme Editor
// Disable the Plugin and Theme Editor if ( ! defined( ‘DISALLOW_FILE_EDIT’ ) ) { define( ‘DISALLOW_FILE_EDIT’, true ); }Continue reading
Join 2,000,000+ Professionals who use WPCode to Future-Proof Their Websites!
// Disable the Plugin and Theme Editor if ( ! defined( ‘DISALLOW_FILE_EDIT’ ) ) { define( ‘DISALLOW_FILE_EDIT’, true ); }Continue reading
add_filter(‘wp_sitemaps_enabled’, ‘__return_false’);Continue reading
add_filter( ‘wp_lazy_loading_enabled’, ‘__return_false’ );Continue reading
/** * Adds additional arguments into the post type registration for downloads. * * @param array $download_args The existing array of arguments. * * @return array */ function eddwp_add_rest_for_dls( $download_args ) { $download_args[‘show_in_rest’] = true; $download_args[‘rest_base’] = ‘downloads’; return $download_args;…Continue reading
function sumobi_edd_remove_product_notes( $notes, $download_id ) { // enter the download IDs you’d like to exclude into this array $downloads_to_exclude = array( 509, 104, 435 ); if ( in_array( $download_id, $downloads_to_exclude ) ) { return false; } return $notes; } add_filter(…Continue reading
function pw_edd_remove_price( $args ) { $args[‘price’] = ‘no’; return $args; } add_filter( ‘edd_purchase_link_defaults’, ‘pw_edd_remove_price’ );Continue reading
function pw_edd_remove_free( $form, $args ) { $form = str_replace( ‘Free – Purchase’, ‘Purchase’ , $form ); return $form; } add_filter( ‘edd_purchase_download_form’, ‘pw_edd_remove_free’, 10, 2 );Continue reading
function pw_edd_comments() { add_post_type_support( ‘download’, ‘comments’ ); } add_action( ‘init’, ‘pw_edd_comments’, 999 );Continue reading
function sumobi_download_post_type_args( $download_args ) { $download_args[‘exclude_from_search’] = true; return $download_args; } add_filter( ‘edd_download_post_type_args’, ‘sumobi_download_post_type_args’ );Continue reading
add_filter( ‘edd_product_notes’, ‘__return_false’ );Continue reading