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ürze wieder erreichbar.\n");
}
}
?>
Kann ich diesen einfach in die functions.php integrieren oder bietet Kriesi diese Möglichkeit vielleicht bereits im Theme an?
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