前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >WordPress丨常见函数及拓展模板函数大全

WordPress丨常见函数及拓展模板函数大全

作者头像
V站CEO-西顾
发布2018-06-08 15:21:58
1.6K0
发布2018-06-08 15:21:58
举报
文章被收录于专栏:V站V站

笔记记录,需要的小朋友也可以带走!

wordpress模板是由PHP语句组成,很多不懂代码的站长都被PHP复杂的代码难倒,难以自己开发个性化的模板。其实想开发一个wordpress模板并不是太难,大家只要了解一些wordpress中的常用函数,即可按照自己的需要进行内容调用了。更高端一点的类似于一些PHP语句的判断等等,这就需要大家自己去学习提高了。本篇文章主要讲解wordpress开发模板中经常需要用到的一些函数。

一、header常用的函数

<?php bloginfo(‘name’); ?>  : 博客名称(Title) [输出示例:前端开拓者]

<?php bloginfo(‘stylesheet_url’); ?>  : CSS文件路径  [输出示例:http://www.frontopen.com/wp-content/themes/frontopen2/style.css]

<?php bloginfo(‘pingback_url’); ?>  : PingBack Url  [输出示例:http://www.frontopen.com/xmlrpc.php]

<?php bloginfo(‘template_url’); ?>  : 模板文件路径  [输出示例:http://www.frontopen.com/wp-content/themes/frontopen2/]

<?php bloginfo(‘version’); ?>  : WordPress版本  [输出示例:WordPress 3.5.2]

<?php bloginfo(‘atom_url’); ?>  : Atom Url  [输出示例:http://www.frontopen.com/feed/atom]

<?php bloginfo(‘rss2_url’); ?>  : RSS 2.o Url  [输出示例:http://www.frontopen.com/feed]

<?php bloginfo(‘url’); ?>  : 博客 Url  [输出示例:http://www.frontopen.com/]

<?php bloginfo(‘html_type’); ?>  : 博客网页Html类型  [输出示例:text/html]

<?php bloginfo(‘charset’); ?>  : 博客网页编码  [输出示例:UTF-8]

<?php bloginfo(‘description’); ?>  : 博客描述  [输出示例:一个专注于前端开发与jQuery程序拓展的分享平台,面向于web构架前端开发、jQuery程序开发、移动终端程序开发等各领域的交流平台。分享前端开发中的经验心得,分享开发源代码。]

<?php wp_title(); ?>  : 特定内容页(Post/Page)的标题

注:上述函数,主要用于页面中的<head></head>部分的内容,当然有必要的话,也可以用在其他部分,请务必仔细阅读,了解对应标签会输出什么内容。

二、用于判断的tag函数

is_home() : 函数所在的页面是否为主页

is_single()  : 是否为内容页(Post)

is_page()  : 是否为内容页(Page)

is_category()  : 是否为Category/Archive页

is_tag()  : 是否为Tag存档页

is_date()  : 是否为指定日期存档页

is_year()  : 是否为指定年份存档页

is_month()  : 是否为指定月份存档页

is_day()  : 是否为指定日存档页

is_time()  : 是否为指定时间存档页

is_archive()  : 是否为存档页

is_search()  : 是否为搜索结果页

is_404()  : 是否为 “HTTP 404: Not Found” 错误页

is_paged()  : 主页/Category/Archive页是否以多页显示

is_user_logged_in():判断用户是否已登录

注:判断函数一般都用于if..else语句中,所以大家在使用前,请先了解if判断语句的用法。不会太难,过一段时间本博会专门介绍PHP中的if语句如何使用。

三、模板内容部分的常用函数

<?php get_header(); ?>  : 调用Header模板

<?php get_sidebar(); ?>  : 调用Sidebar模板

<?php get_footer(); ?>  : 调用Footer模板

<?php the_content(); ?>  : 显示内容(Post/Page)

<?php if(have_posts()) ” ?>  : 检查是否存在Post/Page,即是否有内容

<?php while(have_posts()) ” the_post(); ?>  : 如果存在Post/Page则予以显示

<?php endwhile; ?>  : While 结束

<?php endif; ?>  : If 结束标记,与if起始标签对应,一定要成对存在

<?php the_time(‘字符串’) ?>  : 显示时间,时间格式由“字符串”参数决定,具体参考PHP手册

<?php comments_popup_link(); ?>  : 正文中的留言链接。如果使用 comments_popup_script() ,则留言会在新窗口中打开,反之,则在当前窗口打开

<?php the_title(); ?>  : 内容页(Post/Page)标题

<?php the_permalink() ?>  : 内容页(Post/Page) Url

<?php the_category(‘, ‘) ?>  : 特定内容页(Post/Page)所属Category

<?php the_author(); ?>  : 作者

<?php the_ID(); ?>  : 特定内容页(Post/Page) ID

<?php edit_post_link(); ?>  : 如果用户已登录并具有权限,显示编辑链接

<?php get_links_list(); ?>  : 显示Blogroll中的链接

<?php comments_template(); ?>  : 调用留言/回复模板

<?php wp_list_pages(); ?>  : 显示Page列表

<?php wp_list_categories(); ?>  : 显示Categories列表

<?php next_post_link(‘ %link ‘); ?>  : 下一篇文章链接

<?php previous_post_link(‘%link’); ?>  : 上一篇文章链接

<?php get_calendar(); ?>  : 日历

<?php wp_get_archives() ?>  : 显示内容存档

<?php posts_nav_link(); ?> : 导航,显示上一篇/下一篇文章链接

<?php include(TEMPLATEPATH . ‘/文件名’); ?> : 嵌入其他文件,可为定制的模板或其他类型文件

注:以上某些函数功能在对应的页面中使用,注意程序逻辑请不要胡乱添加,可能会产生错误。

四、其他常用函数

<?php _e(‘Message’); ?> : 输出信息,可用于输出自定义生成的变量信息。

<?php wp_register(); ?> : 显示博客注册链接

<?php wp_loginout(); ?> : 显示登录/注销链接

<!–next page-> : 将当前内容分页

<!–more–> : 将当前内容截断,以不在主页/目录页显示全部内容

<?php timer_stop(1); ?> : 网页加载时间(秒)

<?php echo get_num_queries(); ?>: 网页加载查询量

注:以上函数并不是绝对需要应用,属于增加用户体验的拔高内容。

通过上面的函数,大家基本可以控制整个WP博客所需要的内容调用了。只要有一定的div+css基础,完全可以自己开发个性的WP模板了。

拓展:

WordPress模板基本文件

代码语言:text
复制
style.css 样式表文件index.php 主页文件single.php 日志单页文件page.php 页面文件archvie.php 分类和日期存档页文件searchform.php 搜索表单文件search.php 搜索页面文件comments.php 留言区域文件(包括留言列表和留言框)404.php 404错误页面header.php 网页头部文件sidebar.php 网页侧边栏文件footer.php 网页底部文件

WordPress Header头部 PHP代码

注: 也就是位于和之间的PHP代码

代码语言:html
复制
<?php bloginfo(’name’); ?> 网站标题<?php wp_title(); ?> 日志或页面标题<?php bloginfo(’stylesheet_url’); ?> WordPress主题样式表文件style.css的相对地址<?php bloginfo(’pingback_url’); ?> WordPress博客的Pingback地址<?php bloginfo(’template_url’); ?> WordPress主题文件的相对地址<?php bloginfo(’version’); ?> 博客的WordPress版本<?php bloginfo(’atom_url’); ?> WordPress博客的Atom地址<?php bloginfo(’rss2_url’); ?> WordPress博客的RSS2地址<?php bloginfo(’url’); ?> WordPress博客的绝对地址<?php bloginfo(’name’); ?> WordPress博客的名称<?php bloginfo(’html_type’); ?> 网站的HTML版本<?php bloginfo(’charset’); ?> 网站的字符编码格式

WordPress 主体模板 PHP代码

代码语言:html
复制
<?php the_content(); ?> 日志内容<?php if(have_posts()) : ?> 确认是否有日志<?php while(have_posts()) : the_post(); ?> 如果有,则显示全部日志<?php endwhile; ?> 结束PHP函数”while”<?php endif; ?> 结束PHP函数”if”<?php get_header(); ?> header.php文件的内容<?php get_sidebar(); ?> sidebar.php文件的内容<?php get_footer(); ?> footer.php文件的内容<?php the_time(’m-d-y’) ?> 显示格式为”02-19-08″的日期<?php comments_popup_link(); ?> 显示一篇日志的留言链接<?php the_title(); ?> 显示一篇日志或页面的标题<?php the_permalink() ?> 显示一篇日志或页面的永久链接/URL地址<?php the_category(’, ‘) ?> 显示一篇日志或页面的所属分类<?php the_author(); ?> 显示一篇日志或页面的作者<?php the_ID(); ?> 显示一篇日志或页面的ID<?php edit_post_link(); ?> 显示一篇日志或页面的编辑链接<?php get_links_list(); ?> 显示Blogroll中的链接<?php comments_template(); ?> comments.php文件的内容<?php wp_list_pages(); ?> 显示一份博客的页面列表<?php wp_list_cats(); ?> 显示一份博客的分类列表<?php next_post_link(’ %link ‘) ?> 下一篇日志的URL地址<?php previous_post_link(’%link’) ?> 上一篇日志的URL地址<?php get_calendar(); ?> 调用日历<?php wp_get_archives() ?> 显示一份博客的日期存档列表<?php posts_nav_link(); ?> 显示较新日志链接(上一页)和较旧日志链接(下一页)<?php bloginfo(’description’); ?> 显示博客的描述信息

其它的一些WordPress模板代码

代码语言:html
复制
/%postname%/ 显示博客的自定义永久链接<?php the_search_query(); ?> 搜索表单的值<?php _e(’Message’); ?> 打印输出信息<?php wp_register(); ?> 显示注册链接<?php wp_loginout(); ?> 显示登入/登出链接<!–next page–> 在日志或页面中插入分页<!–more–> 截断日志<?php wp_meta(); ?> 显示管理员的相关控制信息<?php timer_stop(1); ?> 显示载入页面的时间<?php echo get_num_queries(); ?> 显示载入页面查询

wordpress调用最新文章

WordPress最新文章的调用可以使用一行很简单的模板标签wp_get_archvies来实现. 代码如下:

代码语言:html
复制
<?php get_archives(‘postbypost’, 10); ?> (显示10篇最新更新文章)

或者

代码语言:html
复制
<?php wp_get_archives(‘type=postbypost&limit=20&format=custom’); ?>

后面这个代码显示你博客中最新的20篇文章,其中format=custom这里主要用来自定义这份文章列表的显示样式。具体的参数和使用方法你可 以参考官方的使用说明- wp_get_archvies。(fromat=custom也可以不要,默认以UL列表显示文章标题。)

补充: 通过WP的query_posts()函数也能调用最新文章列表, 虽然代码会比较多一点,但可以更好的控制Loop的显示,比如你可以设置是否显示摘要。具体的使用方法也可以查看官方的说明。

wordpress调用随机文章

代码语言:html
复制
<?php$rand_posts = get_posts(‘numberposts=10&orderby=rand’);foreach( $rand_posts as $post ) :?><!–下面是你想自定义的Loop–><li><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></li><?php endforeach; ?>

wordpress调用最新留言

下面是我之前在一个WordPress主题中代到的最新留言代码,具体也记不得是哪个主题了。该代码直接调用数据库显示一份最新留言。其中 LIMIT 10限制留言显示数量。绿色部份则是每条留言的输出样式。

代码语言:text
复制
<?phpglobal $wpdb;$sql = “SELECT DISTINCT ID, post_title, post_password, comment_ID,comment_post_ID, comment_author, comment_date_gmt, comment_approved,comment_type,comment_author_url,SUBSTRING(comment_content,1,30) AS com_excerptFROM $wpdb->commentsLEFT OUTER JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID =$wpdb->posts.ID)WHERE comment_approved = ’1′ AND comment_type = ” ANDpost_password = ”ORDER BY comment_date_gmt DESCLIMIT 10″;$comments = $wpdb->get_results($sql);$output = $pre_HTML; foreach ($comments as $comment) {$output .= “n<li>”.strip_tags($comment->comment_author).”:” . ” <a href=”" . get_permalink($comment->ID) .“#comment-” . $comment->comment_ID . “” title=”on ” .$comment->post_title . “”>” . strip_tags($comment->com_excerpt).”</a></li>”;} $output .= $post_HTML;echo $output;?>

4.wordpress调用相关文章

在文章页显示相关文章

代码语言:php
复制
<?php$tags = wp_get_post_tags($post->ID);if ($tags) {$first_tag = $tags[0]->term_id;$args=array(‘tag__in’ => array($first_tag),‘post__not_in’ => array($post->ID),‘showposts’=>10,‘caller_get_posts’=>1);$my_query = new WP_Query($args);if( $my_query->have_posts() ) {while ($my_query->have_posts()) : $my_query->the_post(); ?><li><a href=”<?php the_permalink() ?>” rel=”bookmark” title=”<?php the_title_attribute(); ?>”><?php the_title();?> <?php comments_number(‘ ‘,’(1)’,'(%)’); ?></a></li><?phpendwhile;}}wp_reset_query();?>

5.wordpress调用指定分类的文章

代码语言:php
复制
<?php $posts = get_posts( “category=4&numberposts=10″ ); ?><?php if( $posts ) : ?><ul><?php foreach( $posts as $post ) : setup_postdata( $post ); ?><li><a href=”<?php the_permalink() ?>” rel=”bookmark” title=”<?php the_title(); ?>”><?php the_title(); ?></a></li><?php endforeach; ?></ul><?php endif; ?>

6.wordpress去评论者链接的评论输出

代码语言:text
复制
<?phpglobal $wpdb;$sql = “SELECT DISTINCT ID, post_title, post_password, comment_ID,comment_post_ID, comment_author, comment_date_gmt, comment_approved,comment_type,comment_author_url,SUBSTRING(comment_content,1,14) AS com_excerptFROM $wpdb->commentsLEFT OUTER JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID =$wpdb->posts.ID)WHERE comment_approved = ’1′ AND comment_type = ” ANDpost_password = ”ORDER BY comment_date_gmt DESCLIMIT 10″;$comments = $wpdb->get_results($sql);$output = $pre_HTML;foreach ($comments as $comment) {$output .= “\n<li>”.strip_tags($comment->comment_author).”:” . ” <a href=\”" . get_permalink($comment->ID) .“#comment-” . $comment->comment_ID . “\” title=\”on ” .$comment->post_title . “\”>” . strip_tags($comment->com_excerpt).”</a></li>”;}$output .= $post_HTML;echo $output;?>

7.wordpress调用含gravatar头像的评论输出

代码语言:text
复制
<?phpglobal $wpdb;$sql = “SELECT DISTINCT ID, post_title, post_password, comment_ID, comment_post_ID, comment_author, comment_date_gmt, comment_approved,comment_author_email, comment_type,comment_author_url, SUBSTRING(comment_content,1,10) AS com_excerpt 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 comment_author != ‘郑 永’ AND post_password = ” ORDER BY comment_date_gmt DESC LIMIT 10″;$comments = $wpdb->get_results($sql);$output = $pre_HTML;foreach ($comments as $comment) {$output .= “\n<li>”.get_avatar(get_comment_author_email(‘comment_author_email’), 18). ” <a href=\”" . get_permalink($comment->ID) . “#comment-” . $comment->comment_ID . “\” title=\”" . $comment->post_title . ” 上的评论\”>”. strip_tags($comment->comment_author) .”: “. strip_tags($comment->com_excerpt) .”</a></li>”;}$output .= $post_HTML;$output = convert_smilies($output);echo $output;?>

上面代码把comment_author的值改成你的ID,18是头像大小,10是评论数量。

8.wordpress调用网站统计大全

1、日志总数:

代码语言:html
复制
<?php $count_posts = wp_count_posts(); echo $published_posts = $count_posts->publish;?>

2、草稿数目:

代码语言:html
复制
<?php $count_posts = wp_count_posts(); echo $draft_posts = $count_posts->draft; ?>

3、评论总数:

代码语言:html
复制
<?php echo $wpdb->get_var(“SELECT COUNT(*) FROM $wpdb->comments”);?>

4、成立时间:

代码语言:html
复制
<?php echo floor((time()-strtotime(“2008-8-18″))/86400); ?>

5、标签总数:

代码语言:html
复制
<?php echo $count_tags = wp_count_terms(‘post_tag’); ?>

6、页面总数:

代码语言:html
复制
<?php $count_pages = wp_count_posts(‘page’); echo $page_posts = $count_pages->publish; ?>

7、分类总数:

代码语言:html
复制
<?php echo $count_categories = wp_count_terms(‘category’); ?>

8、链接总数:

代码语言:html
复制
<?php $link = $wpdb->get_var(“SELECT COUNT(*) FROM $wpdb->links WHERE link_visible = ‘Y’”); echo $link; ?>

9、用户总数:

代码语言:html
复制
<?php $users = $wpdb->get_var(“SELECT COUNT(ID) FROM $wpdb->users”); echo $users; ?>

10、最后更新:

代码语言:text
复制
<?php $last = $wpdb->get_results(“SELECT MAX(post_modified) AS MAX_m FROM $wpdb->posts WHERE (post_type = ‘post’ OR post_type = ‘page’) AND (post_status = ‘publish’ OR post_status = ‘private’)”);$last = date(‘Y-n-j’, strtotime($last[0]->MAX_m));echo $last; ?>

9.wordpress判断语句

代码语言:erlang
复制
is_single()

判断是否是具体文章的页面

代码语言:erlang
复制
is_single(’2′)

判断是否是具体文章(id=2)的页面

代码语言:erlang
复制
is_single(’Beef Stew’)

判断是否是具体文章(标题判断)的页面

代码语言:erlang
复制
is_single(’beef-stew’)

判断是否是具体文章(slug判断)的页面

代码语言:erlang
复制
comments_open()

是否留言开启

代码语言:erlang
复制
pings_open()

是否开启ping

代码语言:erlang
复制
is_page()

是否是页面

代码语言:erlang
复制
is_page(’42′)

id判断,即是否是id为42的页面

代码语言:erlang
复制
is_page(’About Me’)

判断标题

代码语言:text
复制
is_page(’about-me’)

slug盘断

代码语言:erlang
复制
is_category()

是否是分类

代码语言:erlang
复制
is_category(’6′)

id判断,即是否是id为6的分类

代码语言:erlang
复制
is_category(’Cheeses’)

分类title判断

代码语言:erlang
复制
is_category(’cheeses’)

分类 slug判断

代码语言:shell
复制
in_category(’5′)

判断当前的文章是否属于分类5

代码语言:erlang
复制
is_author()

将所有的作者的页面显示出来

代码语言:erlang
复制
is_author(’1337′)

显示author number为1337的页面

代码语言:erlang
复制
is_author(’Elite Hacker’)

通过昵称来显示当前作者的页面

代码语言:erlang
复制
is_author(’elite-hacker’)

下面是通过不同的判断实现以年、月、日、时间等方式来显示归档

代码语言:erlang
复制
is_date()is_year()is_month()is_day()is_time()

判断当前是否是归档页面

代码语言:erlang
复制
is_archive()

判断是否是搜索

代码语言:erlang
复制
is_search()

判断页面是否404

代码语言:erlang
复制
is_404()

判断是否翻页,比如你当前的blog是http://domain.com 显示http://domain.com?paged=2的时候,这个判断将返 回真,通过这个函数可以配合is_home来控制某些只能在首页显示的界面,

例如:

代码语言:html
复制
<?php if(is_single()):?>//这里写你想显示的内容,包括函数<?php endif;?>

或者:

代码语言:html
复制
<?php if(is_home() && !is_paged() ):?>//这里写你想显示的内容,包括函数<?php endif;?>

10.wordpress 非插件调用评论表情

代码语言:html
复制
<!–smilies–><?phpfunction wp_smilies() {global $wpsmiliestrans;if ( !get_option(‘use_smilies’) or (empty($wpsmiliestrans))) return;$smilies = array_unique($wpsmiliestrans);$link=”;foreach ($smilies as $key => $smile) {$file = get_bloginfo(‘wpurl’).’/wp-includes/images/smilies/’.$smile;$value = ” “.$key.” “;$img = “<img src=\”{$file}\” alt=\”{$smile}\” />”;$imglink = htmlspecialchars($img);$link .= “<a href=\”#commentform\” title=\”{$smile}\” onclick=\”document.getElementById(‘comment’).value += ‘{$value}’\”>{$img}</a>&nbsp;”;}echo ‘<div>’.$link.’</div>’;}?><?php wp_smilies();?><!–smilies—>

将以上代码复制到 comments.php 中合适的位置。

摘至V站

本文系转载,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文系转载前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档