Archive for the ‘WordPress’ Category
Tuesday, February 19th, 2008
在新生成的页面中,选中了允许评论,可是在前台的页面中无法显示。
原因:page页面的模板问题。
解决方法:找到模板文件page.php,在文件中找到
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php endwhile; endif; ?>
在上面的代码中间的合适位置添加如下代码:
<?php comments_template(); ?>
问题可以解决了,看我的留言板
http://he.nahesky.com/index.php/guestbook
Posted in PHP, WordPress | No Comments »
Thursday, October 11th, 2007
错误提示信息:
Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 6144 bytes) in F:\AppServ\www\pro\wordpresscn\wp-includes\registration.php on line 194
系统分配内存问题
解决办法:
在 wp-config.php 文件的 <?php 下 加一句 ini_set("memory_limit", '-1');
Posted in PHP, WordPress | No Comments »
Friday, September 7th, 2007
Gravatars2是一个显示会员头像插件,优点是在没有注册的前提下,也可以随机的调出指定文件夹下的图片来作为头像显示。
下载地址:gravatars2.zip
使用方法:
Posted in PHP, WordPress | No Comments »
Thursday, September 6th, 2007
功能介绍:
Category Image 这个插件就是在你的博客的每篇日志内容的左上角或者右上角显示这篇日志所在分类的图片对应的图片。如本站所示。
原文说明地址:http://fairyfish.net/2007/07/15/plugin-category-image/
下载地址:category-image-1.0.zip
安装和使用:
Posted in PHP, WordPress | No Comments »