10例好用的wordpress方法教程强烈推荐个人收藏,用WordPress做博客网站的盆友可以参考一下。
1、全自动向WordPress编辑器插进文字编写当今主题目录的functions.php文档,并黏贴下列代码:
复制代码代码以下:
<?php
add_filter('default_content','my_editor_content');
functionmy_editor_content($content){
$content="青芒华明镇-这儿不卖青芒,请另择他处选购。";
return$content;
}
?>
2、获得WordPress申请注册用户数
根据简易的SQL句子,就可以便捷得到WordPress申请注册客户的总数:
复制代码代码以下:
$users=$wpdb->get_var("SELECTCOUNT(ID)FROM$wpdb->users");
echo"一共有".$users."位申请注册客户";
3、依据特定自定字段名获得WordPress文章内容
在query_posts()涵数中传到自定字段名主要参数,就可以获得相匹配文章列表:
复制代码代码以下:
<?phpquery_posts('meta_key=review_type&meta_value=movie');?>
<?phpif(have_posts()):?>
<?phpwhile(have_posts()):the_post();?>
主要参数中meta_key是索取获得自定字段称,meta_value是自定字段名赋值。
4、获得某一时间范围的WordPress文章内容
编写index.php文档,只需在循环体以前,加上下列代码就可以。自然必须依据必须拆换时间范围的设定:
复制代码代码以下:
<?php
functionfilter_where($where=''){
$where.="ANDpost_date>='2009-01-01'ANDpost_date<='2010-01-01'";
return$where;
}
add_filter('posts_where','filter_where');
query_posts($query_string);
?>
5、为某一WordPress标识形成RSS定阅源
假如你所闻,标识能够根据分号切分,那样还可以获得好几个标识的RSSFeed源:
<ahref="http://www.mangguo.org/?feed=rss&tag=query_posts,loop">
6、避免缓存文件WordPress款式文档
根据服务端设定以避免手机客户端载入缓存:
复制代码代码以下:
<linkrel="stylesheet"href="<?phpbloginfo('stylesheet_url');echo'?'.filemtime(get_stylesheet_directory().'/style.css');?>">
7、客户统计分析文章内容篇幅的WordPress涵数
在当今主题风格的functions.php文档中黏贴下列代码:
复制代码代码以下:
functionwcount(){
ob_start();
the_content();
$content=ob_get_clean();
returnsizeof(explode(”“,$content));
}
调用函数方式:
<?phpechowcount();?>
8、严禁WordPress全自动储存文章内容
要禁止使用WordPress的全自动储存作用,请编写functions.php文档并加上下列代码:
复制代码代码以下:
functiondisableAutoSave(){
wp_deregister_script('autosave');
}
add_action('wp_print_scripts','disableAutoSave');
9、道别Pingbacks/h3>
在phpMyAdmin中实行下列句子,一键拿下恶心想吐的Pingbacks作用。
UPDATE`wp_posts`SETping_status="closed";10、为WordPress文章内容插进创作者信息内容
编写主题风格相匹配的functions.php文档并黏贴下列代码:
复制代码代码以下:
functionget_author_bio($content=''){
global$post;
$post_author_name=get_the_author_meta("display_name");
$post_author_description=get_the_author_meta("description");
$html="<divclass='clearfix'id='about_author'>\n";
$html.="<imgwidth='80'height='80'class='avatar'src='http://www.gravatar.com/avatar.php?gravatar_id=".md5(get_the_author_email())."&default=".urlencode($GLOBALS['defaultgravatar'])."&size=80&r=PG'alt='PG'/>\n";
$html.="<divclass='author_text'>\n";
$html.="<h4>Author:<span>".$post_author_name."</span></h4>\n";
$html.=$post_author_description."\n";
$html.="</div>\n";
$html.="<divclass='clear'></div>\n";
$content.=$html;
return$content;
}
add_filter('the_content','get_author_bio');
版权声明,转截请标明出處。青芒
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)