Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #240027

    Hi,
    ich würde gerne meine Enfold-Webseite während ich sie noch fertig erstelle und anpasse in einen für außen sichtbaren Wartungsmodus setzen.
    Dazu habe ich folgenden Code gefunden

    <?php
    /**
     * Plugin Name: Wartungsmodus
     */
    
    add_action("get_header", "schalte_Website_in_Wartungsmodus");
    
    function schalte_Website_in_Wartungsmodus() {
    
        if (!current_user_can("edit_themes") or !is_user_logged_in()) {
            wp_die("Wartungsmodus! <br />\n".
                   "Der Blog ist in K&uuml;rze wieder erreichbar.\n");
        }
    }
    ?>

    Kann ich diesen einfach in die functions.php integrieren oder bietet Kriesi diese Möglichkeit vielleicht bereits im Theme an?

    #240396

    Hi sunshineh!

    Most of the options needs to have permissions to either manage / edit / update those, or have admin privileges to work, so there is no need to add that snippet to funtions.php, hopefully i was able to answer your question, ( don’t speak or read german but i can use google translate ;).

    Cheers!
    David

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.