用动态化当然能够处理这些成绩,不过关于流量不大的博客就没必要了。 wordpress自带有缓存体系,要害的函数你能够在wp-includes/cache.php或 Codex里查找到一切的函数。
你能够应用下列函数来完成增加缓存。
wp_cache_add($key, $data, $flag = '', $expire = 0)
wp_cache_delete($id, $flag = '')
wp_cache_get($id, $flag = '')
wp_cache_replace($key, $data, $flag = '', $expire = 0)
define('WP_CACHE', true);
<?php
/**
* get recent comments
* @param unknown_type $args
* @return unknown_type
*/
function DeamworkRecentcomments($args='number=5&status=approve'){</p>
<p> $cacheID = md5($args);
//有缓存就间接输入
if($output = wp_cache_get('recentComments_'.$cacheID, 'Winysky')){
echo $output;
return;
}</p>
<p> //$rcms = get_comments($args);
global $wpdb;</p>
<p> $my_email = "'" . get_bloginfo ('admin_email') . "'";
//主动获取博主邮箱
$rcms = $wpdb->get_results("
SELECT ID, post_title, comment_ID, comment_author, comment_author_email, comment_content
FROM $wpdb->comments LEFT OUTER JOIN $wpdb->posts
ON ($wpdb->comments.comment_post_ID = $wpdb->posts.ID)
WHERE comment_approved = '1'
AND comment_type = ''
AND post_password = ''
AND comment_author_email != $my_email</p>
<p>ORDER BY comment_date_gmt
DESC LIMIT 10</p>
<p>");</p>
<p> //print_r($rcms);return;
if(empty($rcms)){
_e('没无数据');
return;
}
//历遍数据
$output = '';
foreach( $rcms as $rcm ){
$author = $rcm->comment_author;
//if($author =='admin'){continue;}
$content = DeamworkStriptags( $rcm->comment_content);
$the_title = get_the_title($rcm->comment_post_ID);
$s_excerpt = convert_smilies( DeamworkSubstr( $content, 200 ) );
$contents = '<span class=\'recentcommentslink_author\'>' . $author . '</span> <span class=\'recentcommentslink_on\'>on</span> <span class=\'recentcommentslink_title\'>' . $the_title . '</span><p class=\'recentcommentslink_excerpt\'>' . get_avatar($rcm->comment_author_email, 64). $s_excerpt . '</p>';</p>
<p> $output .= '<li><p id="C_' . $rcm->comment_ID . '_d" style="display:none">' . $contents . '</p>' . '<a id="C_' . $rcm->comment_ID . '" class="recentcommentslink" href="' . get_permalink($rcm->comment_post_ID) . '#comment-' . $rcm->comment_ID . '" >' . get_avatar($rcm->comment_author_email, 32) . '</a></li>';</p>
<p> }
//输入后退出缓存
wp_cache_add('recentComments_'.$cacheID,$output, 'Deamwork');
echo $output;
}
最初,试试成果吧~
以上就是安达网络工作室关于《wordpress自带的缓存功能使用介绍》的一些看法。更多内容请查看本栏目更多内容!
在WordPress上增加中文用户时报错说不支持中文,失去如下谬误:谬误:请填写用户名。谬误:此用户名蕴含有效...
一、发现成绩 在尝试编辑博客站点的Wordpress主题时,忽然发现博客站点无奈衔接;刷新后提醒“建设数据库衔...
博客改换主域名是很失常的事件,但改换完主域名之后,有一些事件是必需实现,否则会影响到你的WordPress博客...
很多时分咱们需求在给 WordPress 文章编辑器设置默许内容,比方把罕用的扫尾或许文章留意事项放出来,本文就...
很多博客都有本人的置顶文章,在默许状况下WP对置顶文章只是将它们的地位排在后面,除了地位差别外,跟其余...
上传音频和视频文件应用媒体上传到WordPress是很容易的。虽然媒体上传意识到这些文件,并显示相应的文件类型...