¿Quieres restablecer la configuración predeterminada de WordPress? Este fragmento es útil para los desarrolladores de temas para que puedan probar las cosas y fácilmente restablecer la configuración predeterminada.
Instrucciones:
Todo lo que tienes que hacer es añadir este código al archivo functions.php de tu tema o en un plugin específico del sitio:
ADVERTENCIA: Asegúrese de eliminarlo después de restablecer la configuración.
function set_theme_defaults() { $o = array( 'avatar_default' => 'blank', 'avatar_rating' => 'G', 'category_base' => '/thema', 'comment_max_links' => 0, 'comments_per_page' => 0, 'date_format' => 'd.m.Y', 'default_ping_status' => 'closed', 'default_post_edit_rows' => 30, 'links_updated_date_format' => 'j. F Y, H:i', 'permalink_structure' => '/%year%/%postname%/', 'rss_language' => 'de', 'timezone_string' => 'Etc/GMT-1', 'use_smilies' => 0, ); foreach ( $o as $k => $v ){update_option($k, $v);} // Delete dummy post and comment. wp_delete_post(1, TRUE); wp_delete_comment(1); return; } register_activation_hook(__FILE__, 'set_theme_defaults');
Nota: Si es la primera vez que añade fragmentos de código en WordPress, consulte nuestra guía sobre cómo copiar / pegar correctamente fragmentos de código en WordPress, para no romper accidentalmente su sitio.
Si le gustó este fragmento de código, por favor considere revisar nuestros otros artículos en el sitio como: Los mejores constructores de páginas de WordPress (Comparados).
What about making a test installation and letting anyone from the Internet login (like testing out the backend of a theme or of WordPress in general – letting them install plugins and such) and then doing a reset every 12 hours or something – to basic WordPress – only my specified plugins (or no plugins), and no other settings or authors or anything – a full reset?
I guess you could do this however I’m not sure providing access to the admin would be worth while. The idea is more for theme developers so they could test out things and easily reset back to default settings quickly.