wordpress调用函数大全 2017年1月11日 星期三
    02:44 wordpress调用函数大全 - 图1
    一、WordPress模板基本文件

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

    三、WordPress 主体模板 PHP代码

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

    四、其它的一些WordPress模板代码

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

    五、wordpress 调用的常用方法

    • 1、WordPress最新文章的调用可以使用一行很简单的模板标签wp_get_archvies来实现. 代码如下:
    1. <?php get_archives(‘postbypost’, 10); ?>
    • 显示10篇最新更新文章,或者
    1. <?php wp_get_archives(‘type=postbypost&limit=20&format=custom’); ?>
    • 后面这个代码显示你博客中最新的20篇文章,其中format=custom这里主要用来自定义这份文章列表的显示样式。具体的参数和使用方法你可 以参考官方的使用说明- wp_get_archvies。(fromat=custom也可以不要,默认以UL列表显示文章标题。)
      1. wordpress调用随机文章
    1. <?php
    2. $rand_posts = get_posts(‘numberposts=10&orderby=rand’);
    3. foreach$rand_posts$post
    4. ?>
    5. <!–下面是你想自定义的Loop–>
    6. <?php the_title(); ?>
    7. <?php endforeach; ?>
      1. wordpress调用最新留言
        下面是我之前在一个WordPress主题中代到的最新留言代码,具体也记不得是哪个主题了。该代码直接调用数据库显示一份最新留言。其中LIMIT10限制留言显示数量。绿色部份则是每条留言的输出样式。
    1. <?php
    2. global$wpdb
    3. = “SELECT DISTINCT ID, post_title, post_password, comment_ID,
    4. comment_post_ID, comment_author, comment_date_gmt, comment_approved,
    5. comment_type,comment_author_url,
    6. SUBSTRING(comment_content,1,30) AS com_excerpt
    7. $wpdb->comments
    8. LEFT OUTER JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID =
    9. $wpdb->posts.ID)
    10. WHERE comment_approved = ‘1’ AND comment_type = “ AND
    11. post_password = “
    12. ORDER BY comment_date_gmt DESC
    13. LIMIT 10”;
    14. $comments$wpdb->get_results(
    15. $output$pre_HTMLforeach$comments$comment
    16. $output .= “n
    17. “.strip_tags$comment->comment_author)
    18. .”:” . ” ID) .
    19. “#comment-“. $comment->comment_ID . “” title=”on” .
    20. $comment->post_title . “”>” . strip_tags$comment->com_excerpt)
    21. .”
    22. “;
    23. $output$post_HTML
    24. $output;?>
    • 4.wordpress调用相关文章
      在文章页显示相关文章
    1. <?php
    2. $tags = wp_get_post_tags($post->ID);
    3. $tags
    4. $first_tag$tags[0]->term_id;
    5. $argsarray
    6. ‘tag__in’ => array$first_tag
    7. ‘post__not_in’=> array$post->ID),
    8. ‘showposts’=>10,
    9. ‘caller_get_posts’=>1
    10. $my_query WP_Query($args
    11. $my_query->have_posts() ) {
    12. while$my_query->have_posts()) : $my_query->the_post(); ?>
    13. <?php the_title();?> <?php comments_number(‘ ‘,’(1)’,’(%)’); ?>
    14. <?php
    15. endwhile
    16. wp_reset_query();
    17. ?>
    • 5.wordpress调用指定分类的文章
    1. <?php $posts = get_posts( “category=4&numberposts=10” ); ?>
    2. <?php $posts ) : ?>
    • 7.wordpress调用含gravatar头像的评论输出
    1. <?php
    2. global$wpdb
    3. = “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”;
    4. $comments$wpdb->get_results(
    5. $output$pre_HTML
    6. foreach$comments$comment
    7. $output .= “\n
    8. “.get_avatar(get_comment_author_email(‘comment_author_email’), 18). “ ID) . “#comment-“ . $comment->comment_ID . “\” title=\””$comment->post_title . “ 上的评论\”>”. strip_tags$comment->comment_author) .”: “. strip_tags$comment->com_excerpt) .”
    9. “;
    10. $output$post_HTML
    11. $output = convert_smilies($output
    12. $output
    13. ?>

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

    • 8.wordpress调用网站统计大全
    • 1、日志总数:
    1. <?php $count_posts = wp_count_posts(); $published_posts$count_posts->publish;?>
    • 2、草稿数目:
    1. <?php $count_posts = wp_count_posts(); $draft_posts$count_posts->draft; ?>
    • 3、评论总数:
    1. <?php $wpdb->get_var(“SELECT COUNT(*) FROM $wpdb->comments”);?>
    • 4、成立时间:
    1. <?php floor((time()-strtotime(“2008-8-18”))/86400); ?>
    • 5、标签总数:
    1. <?php $count_tags = wp_count_terms(‘post_tag’); ?>
    • 6、页面总数:
    1. <?php $count_pages = wp_count_posts(‘page’); $page_posts$count_pages->publish; ?>
    • 7、分类总数:
    1. <?php $count_categories = wp_count_terms(‘category’); ?>
    • 8、链接总数:
    1. <?php $link$wpdb->get_var(“SELECT COUNT(*) FROM $wpdb->links WHERE link_visible = ‘Y’”); $link; ?>
    • 9、用户总数:
    1. <?php $users$wpdb->get_var(“SELECT COUNT(ID) FROM $wpdb->users”); $users; ?>
    • 10、最后更新:
    1. <?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(‘Y-n-j’, strtotime$last[0]->MAX_m));$last; ?>
    • 9.wordpress判断语句
    • 判断是否是具体文章的页面
    1. is_single()
    • 判断是否是具体文章(id=2)的页面
    1. is_single(‘2’)
    • 判断是否是具体文章(标题判断)的页面
    1. is_single(‘Beef Stew’)
    • 判断是否是具体文章(slug判断)的页面
    1. is_single(‘beef-stew’)
    • 是否留言开启
    1. comments_open()
    • 是否开启ping
    1. pings_open()
    • 是否是页面
    1. is_page()
    • id判断,即是否是id为42的页面
    1. is_page(‘42’)
    2. is_page(‘About Me’)
    • slug判断
    1. is_page(‘about-me’)
    • 是否是分类
    1. is_category()
    • id判断,即是否是id为6的分类
    1. is_category(‘6’)
    • 分类title判断
    1. is_category(‘Cheeses’)
    • 分类 slug判断
    1. is_category(‘cheeses’)
    • 判断当前的文章是否属于分类5
    1. in_category(‘5’)
    • 将所有的作者的页面显示出来
    1. is_author()
    • 显示author number为1337的页面
    1. is_author(‘1337’)
    • 通过昵称来显示当前作者的页面
    1. is_author(‘Elite Hacker’)
    • 上面是通过不同的判断实现以年、月、日、时间等方式来显示归档
    1. is_date()
    2. is_year()
    3. is_month()
    4. is_day()
    5. is_time()
    • 判断当前是否是归档页面
    1. is_archive()
    • 判断是否是搜索
    1. is_search()
    • 判断页面是否404
    1. is_404()
    1. <?php (is_single()):?>

    //这里写你想显示的内容,包括函数

    1. <?php endif;?>
    2. <?php (is_home() && !is_paged() ):?>

    //这里写你想显示的内容,包括函数

    1. <?php endif;?>

    显示Blogroll中的链接;

    • 10.wordpress 非插件调用评论表情
    1. <!–smilies–>
    2. <?php
    3. function<s/ol/li .= “\n- pan> wp_smilies() {
    4. global$wpsmiliestrans
    5. ( !get_option(‘use_smilies’) emptyempty$wpsmiliestransreturn
    6. $smiliesarray_unique$wpsmiliestrans
    7. $link
    8. foreach$smilies => $smile
    9. $file = get_bloginfo(‘wpurl’).’/wp-includes/images/smilies/‘.$smile
    10. $value
    11. = “\"{$smile}\"“;
    12. $imglink = htmlspecialchars(
    13. $link .= “{}  ”;
    14. ‘.$link.’
      ‘;
    15. ?>
    16. <?php wp_smilies();?>
    17. <!–smilies—>
    • 将以上代码复制到 comments.php 中合适的位置:

    留着自己学习之用!   
    已使用 Microsoft OneNote 2016 创建。