2014-04-01 57 views
1

不要問我如何,但我犯了一個巨大的錯誤,我需要在wordpress中重新生成version.php文件。再生wordpress版本.php

你知道是否有辦法做到這一點,或另一種方式來獲得當前的WP版本沒有這個文件?

非常感謝。

+0

請從不要說髒話。 – ouflak

回答

2

下載的Wordpress

一個新版本,並採用原始version.php文件

(這是)

<?php 
/** 
* The WordPress version string 
* 
* @global string $wp_version 
*/ 
$wp_version = '3.8.1'; 

/** 
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB  schema. 
* 
* @global int $wp_db_version 
*/ 
$wp_db_version = 26691; 

/** 
* Holds the TinyMCE version 
* 
* @global string $tinymce_version 
*/ 
$tinymce_version = '359-20131026'; 

/** 
* Holds the required PHP version 
* 
* @global string $required_php_version 
*/ 
$required_php_version = '5.2.4'; 

/** 
* Holds the required MySQL version 
* 
* @global string $required_mysql_version 
*/ 
$required_mysql_version = '5.0'; 
+0

問題是我需要知道當前的版本(舊版本)。如果我這樣做,它會告訴我3.8.1 ... – FLX

+0

你不能再進入WordPress的管理面板? – WhiteLine

+0

是的,我可以。似乎沒有任何改變。但即使在管理員我沒有當前版本的痕跡,我希望它被存儲在另一個地方... – FLX