0
我正在管理本網站:http://www.reurl.in/5a9b63301。這是一個wordpress主題網站,我需要編輯一些頁面,如索引頁面。但是當我去WordPress的管理面板,編輯頁面時,它顯示了一個沒有任何代碼的空白頁面。而當我看到索引頁從FTP它讓我看到這樣的代碼:空白頁面編輯wordpress主題
<?php
/**
* Front to the WordPress application. This file doesn't do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define('WP_USE_THEMES', true);
/** Loads the WordPress Environment and Template */
require(dirname(__FILE__) . '/wp-blog-header.php');
如果你們對這個請讓我知道,因爲這對我來說是非常重要的想法。並且還建議任何對我理解wordpress編輯很重要的內容。
首先,無論你想改變,不要更改核心文件。創建一個兒童主題,如果它不存在,並進行更改。要解決該問題,請嘗試禁用所有插件並查看文本是否返回。如果確實如此,請將插件依次切換回來,以查看停止工作的位置。 – RST