Versturen van een TESTMAIL

/** * Pixelsz – E-mailtest + vaste afzender en logo (200px) * – Gereedschap → Pixelsz E-mailtest * – Vaste logo-URL (niet wijzigbaar), 200px breed * – Schakelaar: afzendernaam + e-mail afdwingen voor ALLE mails (uit=grijs, aan=groen) */ if (!defined(‘ABSPATH’))…Continue reading

Completely Disable Comments

add_action(‘admin_init’, function () { // Redirect any user trying to access comments page global $pagenow; if ($pagenow === ‘edit-comments.php’) { wp_safe_redirect(admin_url()); exit; } // Remove comments metabox from dashboard remove_meta_box(‘dashboard_recent_comments’, ‘dashboard’, ‘normal’); // Disable support for comments and trackbacks in…Continue reading

Customize Login Form

// Custom Login Message function custom_login_message($message) { if (empty($message)){ return “ Please enter your Id and Password below to login to the TN CLES Website, Thank You “; } else { return $message; } } add_filter(‘login_message’, ‘custom_login_message’); // Custom Logo…Continue reading

Maintenance Mode

add_action( ‘init’, function() { if ( ! current_user_can( ‘manage_options’ ) && ! is_admin() && ! is_login() ) { wp_die( ‘This website is currently undergoing scheduled maintenance. Please try again later.’ ); } } );Continue reading

Duplicate Post/Page Link

// Add duplicate button to post/page list of actions. add_filter( ‘post_row_actions’, ‘wpcode_snippet_duplicate_post_link’, 10, 2 ); add_filter( ‘page_row_actions’, ‘wpcode_snippet_duplicate_post_link’, 10, 2 ); // Let’s make sure the function doesn’t already exist. if ( ! function_exists( ‘wpcode_snippet_duplicate_post_link’ ) ) { /** *…Continue reading

Unique Order ID

/* * Create a unique_id Smart Tag and assign it to each form submission. * * @link https://wpforms.com/developers/how-to-create-a-unique-id-for-each-form-entry/ */ // Generate Unique ID Smart Tag for WPForms function wpf_dev_register_smarttag( $tags ) { // Key is the tag, item is the…Continue reading