WordPress 第7页

Woocommerce PayPal 设置方法

PayPal Standard PayPal Standard takes customers from your site to PayPal’s secure site to finish paying for their order. Requirements A PayPal Business account Go to paypal.com,...
笙歌的头像-THE FREE SKY笙歌7月4日 14:52
05420

宝塔面板多站点使用WordPress设置Redis缓存共存的办法

找到网站目录下的:wp-config.php,点击编辑,在头部注释下方增加以下代码: define( 'WP_CACHE_KEY_SALT', '你的网站域名' ); define( 'WP_REDIS_SELECTIVE_FLUSH', true ); 第一行代码解释: ...
天空的头像-THE FREE SKY天空6月9日 20:46
02830

WP限制评论字数的方法

在主题functions.php文件适当位置加入以下代码: /* 设定评论字数限制开始 */ function set_comments_length($commentdata) { $minCommentlength = 5; //最少字数限制 $maxCommentlength = 1000...
在路上的头像-THE FREE SKY在路上2月19日 21:30
02730