Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • A website using a free WordPress.com subdomain (like yourwebsite.wordpress.com) can last indefinitely if it adheres to WordPress.com’s terms of service. Inactivity may prompt reminders but typically won’t lead to deletion without notice. Free sites have limitations, like ads and limited customization, which may affect functionality but not longevity. For more control and growth potential, consider upgrading to a custom domain and paid plan.

    Add this code to your theme’s functions.php file or a custom plugin, not directly to the WordPress core files.

    // Restrict Application Passwords feature to administrators only
    function my_prefix_customize_app_password_availability($available, $user) {
        // Allow only users with the 'manage_options' capability (typically admins)
        return user_can($user, 'manage_options');
    }
    add_filter('wp_is_application_passwords_available_for_user', 'my_prefix_customize_app_password_availability', 10, 2);
    

    Use Online Scanners: Tools like Sucuri SiteCheck or VirusTotal can help scan your website for malware.

Viewing 3 replies - 1 through 3 (of 3 total)