-
怎样去除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...