-
上标与下标,标签代码
化学分子式与数学中,我们会用到下标与上标符号,那上标与下标,标签是怎样的呢? 上标示例:(a+b)2=a2+2ab+b2 下标:H2o 上标标签: <sup></sup> 下标标签:<sub></sub>阅读全文
-
怎样将wordpress标签云变为彩色
凡云阁提醒注意在前端加上<?PHP与结尾加上?>。 function colorCloud($text) { $text = preg_replace_callback ('|<a (.+?)>|i','colorCloudCallback', $text); return $text; } function colorCloudCallback($matches) { $text = $matches[1]; $color = dechex(rand(0,16777215)); $pattern = '/style=(\'|\”)(.*)(\'|\”)/i'; $text = preg...
-
怎样去除WORDPRESS网址中的index.php
凡云阁感觉这会影响用户体验度,所以我们要想办法将index.php去掉。那怎样才能去除wordpress网址中的index.php呢? 方法一: 新建一个记事本,写入以下代码。 [cc ang="php"] [ISAPI_Rewrite] # 3600 = 1 hour CacheClockRate 3600 RepeatLimit 32 # Protect httpd.ini and httpd.parse.errors files # from accessing through HTTP # Rules to ensure that normal cont...
-
wordpress怎样在侧边栏中插入日历
凡云阁带你进入正题。 在主题的侧边栏模板文件sidebar.php中,适当的位置插入以下代码。 可以适当的修改代码,以达到你的意愿。 [cc ang="php"] 日历 [/cc] 下面凡云阁给出了css样式代码,当然,你也可以按照你的爱好来修改代码。 [cc ang="php"] #wp-calendar { text-align: center; margin: 0; height: 180px; width: 270px; } #wp-c...
-
wordress安装出现500错误的解决方法
凡云阁提到的答案,也是最简单,最容易忽视的!]]>
-
wordpress更换域名教程
今天,凡云阁就来说说wordpress怎样更换域名的事 进入数据库管里界面,如图: 在sql框中输入下列代码,并执行。 [CC ANG="PHP"] UPDATE wp_options SET option_value = replace( option_value, 'http://www.old.com', 'http://www.new.com' ) WHERE option_name = 'home' OR option_name = 'siteurl'; UPDATE wp_posts SET post_content = replace( post_cont...