Optionen sind die wichtigsten Daten in WordPress, sie speichern verschiedene Konfigurationseinstellungen (siehe mehr). Sie werden ebenso wie andere wichtige Daten wie Beiträge, Seiten usw. in die Datenbank aufgenommen. Diese Optionen können von Tag zu Tag von WordPress selbst oder vom Benutzer geändert werden. Wie können Sie sie also auf ihren vorherigen Zustand zurücksetzen, ohne sich jeden genauen Wert zu merken?
In diesem Tutorial zeige ich Ihnen, wie Sie eine einfache Sicherungs-/Wiederherstellungsfunktion für Ihren WordPress-Blog erstellen. Mit dieser Funktion können Sie alle Ihre Optionen an einem anderen Ort sichern, von wo aus Sie sie jederzeit wiederherstellen können, ohne sie erneut konfigurieren zu müssen.
Im Allgemeinen wird unsere Funktionalität in zwei Teile unterteilt, einen Exportteil zum Sichern von Daten und einen Importteil zum Wiederherstellen von Daten. Deshalb werde ich diese demonstrieren, indem ich ein einfaches Plugin erstelle.
Zuerst muss ich ein paar Zeilen schreiben, um WordPress von unserem Plugin zu erzählen.
/* Plugin Name: I/E Option Plugin URI: https://code.tutsplus.com Description: This is a sample plugin with backup and restore options feature. Author: Lee Pham Version: 1.0 Author URI: http://twitter.com/leephamj */
Hier sind unsere Ergebnisse:
Jetzt brauchen wir einen Platz für unsere Plugin-Schnittstelle, die die beiden oben genannten Schlüsselfunktionen anzeigt (einschließlich Import- und Exportfunktionen). Also erstelle ich eine Seite im Admin-Bereich:
function register_ie_option() { add_menu_page('IE Option Page', 'IE Option', 'activate_plugins', 'ie-option', 'ie_option_page', '', 76); add_submenu_page('ie-option', 'Import', 'Import', 'activate_plugins', 'ie-import-option', 'ie_import_option_page'); add_submenu_page('ie-option', 'Export', 'Export', 'activate_plugins', 'ie-export-option', 'ie_export_option_page'); } function ie_option_page() { // Our stuff here } function ie_import_option_page() { // Content Import Feature } function ie_export_option_page() { // Content Export Feature } add_action('admin_menu', 'register_ie_option');
Hier sind einige wichtige Punkte:
add_menu_page
作为内置 WordPress 函数,在管理菜单侧边栏中添加新的顶级菜单部分,其中 ie_option_page
Der Parameter ist die Rückruffunktion, mit der der Seiteninhalt ausgegeben wird. add_submenu_page
将它们添加到我们上面刚刚创建的顶级菜单中。如您所见,每个函数还有一个回调函数来显示输出内容,就像 add_menu_page
-Funktion. Es spielt keine Rolle, ob man sie an einem Ort zusammenführt, ich versuche nur, es klar zu halten. register_ie_option
挂钩到 admin_menu
die Aktion so ausführen, dass unser Ziel jedes Mal feuert, wenn diese Aktion aufgerufen wird. Ich habe vor, eine Exportseite wie diese zu erstellen:
function ie_export_option_page() { if (!isset($_POST['export'])) { ?> <div class="wrap"> <div id="icon-tools" class="icon32"><br /></div> <h2>Export</h2> <p>When you click <tt>Backup all options</tt> button, system will generate a JSON file for you to save on your computer.</p> <p>This backup file contains all configution and setting options on our website. Note that it do <b>NOT</b> contain posts, pages, or any relevant data, just your all options.</p> <p>After exporting, you can either use the backup file to restore your settings on this site again or another WordPress site.</p> <form method='post'> <p class="submit"> <?php wp_nonce_field('ie-export'); ?> <input type='submit' name='export' value='Backup all options'/> </p> </form> </div> <?php } elseif (check_admin_referer('ie-export')) { // Do something if Backup all options button clicked } }
Wir erstellen einfach ein Formular mit einer Schaltfläche und prüfen, ob auf die Schaltfläche geklickt wird. Darüber hinaus fügen wir mithilfe einiger der verfügbaren WordPress-CSS-Klassen beschreibenden Text hinzu. Für Sicherheitsüberprüfungen verwende ich die wp_nonce_field()
和 check_admin_referer()
-Funktion, erfahren Sie mehr über WordPress Nonces.
$blogname = str_replace(" ", "", get_option('blogname')); $date = date("m-d-Y"); $json_name = $blogname."-".$date;
Benennen Sie einfach die Datei, damit Sie leicht erkennen können, wo und wann sie exportiert wurde.
$options = get_alloptions(); foreach ($options as $key => $value) { $value = maybe_unserialize($value); $need_options[$key] = $value; } $json_file = json_encode($need_options);
Dies ist ein wichtiger Schritt, bitte beachten Sie:
get_alloptions()
是一个获取站点上所有选项并将其作为数组返回的函数,在本例中为 $options
. json_encode
hilft uns, dieses Ziel zu erreichen. ob_clean(); echo $json_file; header("Content-Type: text/json; charset=" . get_option( 'blog_charset')); header("Content-Disposition: attachment; filename=$json_name.json"); exit();
Dann verpacken wir den Inhalt der JSON-Daten in zwei wichtige Funktionen: ob_clean()
和 exit()
以确保生成的 JSON 文件仅包含 json_file
保存的 JSON 数据,而没有任何其他数据。顺便说一下,我们向客户端发送一个标头请求,显示一个下载对话框。为了使其正常工作,我们应该将 ob_start()
Die Funktion wird oben im Plugin-Code platziert. Dies verhindert, dass Header-Fehler auftreten. Möglicherweise führen einige zusätzliche Leerzeichen oder Zeilen irgendwo im WordPress-Code dazu Situation. p>
Dies ist der vollständige Exportfunktionscode:„JSON (JavaScript Object Notation) ist ein leichtes Datenaustauschformat. Es ist für Menschen leicht zu lesen und zu schreiben. Es ist für Maschinen leicht zu analysieren und zu generieren.“
function ie_export_option_page() { if (!isset($_POST['export'])) { ?> <div class="wrap"> <div id="icon-tools" class="icon32"><br /></div> <h2>Export</h2> <p>When you click <tt>Backup all options</tt> button, system will generate a JSON file for you to save on your computer.</p> <p>This backup file contains all configution and setting options on our website. Note that it do <b>NOT</b> contain posts, pages, or any relevant data, just your all options.</p> <p>After exporting, you can either use the backup file to restore your settings on this site again or another WordPress site.</p> <form method='post'> <p class="submit"> <?php wp_nonce_field('ie-export'); ?> <input type='submit' name='export' value='Backup all options'/> </p> </form> </div> <?php } elseif (check_admin_referer('ie-export')) { $blogname = str_replace(" ", "", get_option('blogname')); $date = date("m-d-Y"); $json_name = $blogname."-".$date; // Namming the filename will be generated. $options = get_alloptions(); // Get all options data, return array foreach ($options as $key => $value) { $value = maybe_unserialize($value); $need_options[$key] = $value; } $json_file = json_encode($need_options); // Encode data into json data ob_clean(); echo $json_file; header("Content-Type: text/json; charset=" . get_option( 'blog_charset')); header("Content-Disposition: attachment; filename=$json_name.json"); exit(); } }
function ie_import_option_page() { ?> <div class="wrap"> <div id="icon-tools" class="icon32"><br /></div> <h2>Import</h2> <?php if (isset($_FILES['import'])) { // Do something if a file was uploaded } ?> <p>Click Browse button and choose a json file that you backup before.</p> <p>Press Restore button, WordPress do the rest for you.</p> <form method='post' enctype='multipart/form-data'> <p class="submit"> <?php wp_nonce_field('ie-import'); ?> <input type='file' name='import' /> <input type='submit' name='submit' value='Restore'/> </p> </form> </div> <?php }
与导出页面一样,我们创建了一个表单,但这次,我们添加了一个浏览按钮,以便用户可以选择他们想要的文件并提交。
if (isset($_FILES['import'])) { if ($_FILES['import']['error'] > 0) { wp_die("Error happens"); } else { $file_name = $_FILES['import']['name']; $file_ext = strtolower(end(explode(".", $file_name))); $file_size = $_FILES['import']['size']; if (($file_ext == "json") && ($file_size < 500000)) { $encode_options = file_get_contents($_FILES['import']['tmp_name']); $options = json_decode($encode_options, true); foreach ($options as $key => $value) { update_option($key, $value); } echo "<div class='updated'><p>All options are restored successfully.</p></div>"; } else { echo "<div class='error'><p>Invalid file or file size too big.</p></div>"; } } }
如果上传过程出错,只需返回一条死消息“发生错误”。如果没有,获取文件的扩展名和大小,将它们存储到变量中并检查它们。我们只接受扩展名为“.json”且大小小于 500000 字节的文件。如果文件不合适,则仅显示一条错误消息“文件无效或文件大小太大。”。 注意:您可以根据需要修改此尺寸。
然后,$encode_options
变量将获取该文件的所有内容。由于文件中包含JSON数据,因此在使用之前我们必须先解码。为此,我们使用 json_decode
和具有 true 值的第二个参数,因此该函数返回一个数组值。有了数组值,我们就开始循环它。在每次迭代中,我们将使用相同的键及其值更新数据。最后,我们的所有选项都将完全恢复原样,并显示一条成功消息。
这是完整的导入功能代码:
function ie_import_option_page() { ?> <div class="wrap"> <div id="icon-tools" class="icon32"><br /></div> <h2>Import</h2> <?php if (isset($_FILES['import']) && check_admin_referer('ie-import')) { if ($_FILES['import']['error'] > 0) { wp_die("Error happens"); } else { $file_name = $_FILES['import']['name']; // Get the name of file $file_ext = strtolower(end(explode(".", $file_name))); // Get extension of file $file_size = $_FILES['import']['size']; // Get size of file /* Ensure uploaded file is JSON file type and the size not over 500000 bytes * You can modify the size you want */ if (($file_ext == "json") && ($file_size < 500000)) { $encode_options = file_get_contents($_FILES['import']['tmp_name']); $options = json_decode($encode_options, true); foreach ($options as $key => $value) { update_option($key, $value); } echo "<div class='updated'><p>All options are restored successfully.</p></div>"; } else { echo "<div class='error'><p>Invalid file or file size too big.</p></div>"; } } } ?> <p>Click Browse button and choose a json file that you backup before.</p> <p>Press Restore button, WordPress do the rest for you.</p> <form method='post' enctype='multipart/form-data'> <p class="submit"> <?php wp_nonce_field('ie-import'); ?> <input type='file' name='import' /> <input type='submit' name='submit' value='Restore'/> </p> </form> </div> <?php }
在示例插件中,我使用 get_alloptions
WordPress 函数备份了所有站点选项。如果您想将其应用于您自己的特定选项,只需这样做:
$options = array('your_option1_name' => get_option('your_option1_name'), 'your_option2_name' => get_option('your_option2_name'); $json_file = json_encode($options);
然后继续执行上述下一步。您可以自由选择要备份的选项!
在本教程中,我们将概述创建简单的备份/恢复功能。您应该注意到,我的插件只是一个简单的示例,而不是官方的。我的目标不是写一个完美的插件,而是向你展示这个功能的基本原理。通过理解它,您可以在模板或插件上创建自己的功能,也可以根据需要使其灵活。因此,您可以为您的模板/插件隔离此功能。
我希望本教程对您有用,请告诉我您的想法。你的想法让它变得更好,甚至告诉我我的错误,你的反馈真的会有很大帮助。感谢您的阅读!
add_menu_page
WordPress 函数add_submenu_page
WordPress函数get_alloptions
WordPress 函数Das obige ist der detaillierte Inhalt vonVereinfachen Sie den Prozess des Sicherns und Wiederherstellens von Einstellungen. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!