-
html特殊符号代码
空格:&snap,六个空格符号为中文格式空两个汉字 “双引号(英文)," 单引号,‘,’,乖号:×,除号:÷,大于号:>,小于号:<,&字符号:&,长破折号:—,竖线:|,分节符:§ §,版权符:©,注册商标:®,商标:™,欧元:€,&...
-
怎样将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错误的解决方法
凡云阁提到的答案,也是最简单,最容易忽视的!]]>