WordPress的更新十分方便,但是你有没有试图使用SSH更新过你的WordPress呢?这篇文章对那些喜欢使用SSH以及对服务器指令的站长有点儿用处,喜欢的朋友可以试一试。 提示: 1一定要首先备份好你的网站,我想在进行任何根目录操作前都应该养成备份的好习惯 2如果你使用WP-Cache插件,一定要停用它,最好停用全部插件,否则可能最后你会得到一个大大的500错误页面! 首先通过SSH连接到你的服务器上,我使用的是Putty。如果你是共享主机的话要首先确认主机商是否支持SSH。连接到WordPress安装的根目录,一般该目录都会有wp-config.php这个文件。然后一步步的按照下面的指令开始。 从官网下载最新版本的WP wget…
April 30, 2015
Magento 获取当前货币和货币符How to get current currency in Magento
We know Magento support multiple currency. I have found the solution to check current currency in the Magento site frontend
To get Current Currency
<?php echo $currency_code = Mage::app()->getStore()->getCurrentCurrencyCode(); ?>
If you looking for current currency symbol use :
<?php echo Mage::app()->getLocale()->currency(Mage::app()->getStore()->getCurrentCurrencyCode())->getSymbol(); ?>