WordPress 常用模板函数速查表简单,快速,复制/粘贴,这个页面列出用于创建,更新和维护 WordPress 模板的常用函数列表。基本模板文件文件名描述style.css主题样式文件index.php首页模板文件header.php头部模板文件single.php单篇文章模板文件archive.php存档/分类模…
WordPress 常用模板函数速查表
简单,快速,复制/粘贴,这个页面列出用于创建,更新和维护 WordPress 模板的常用函数列表。
基本模板文件
style.css主题样式文件index.php首页模板文件header.php头部模板文件single.php单篇文章模板文件archive.php存档/分类模板文件searchform.php搜索表单模板文件search.php搜索模板文件404.php404 模板文件comments.php留言模板文件footer.php底部模板文件sidebar.php侧边栏模板文件page.php静态页面模板文件front-page.php静态首页模板文件tag.php标签存档模板文件category.php分类存档模板文件头部函数
<?php site_url(); ?>站点根链接<?php wp_title(); ?>文章或者静态页面标题<?php bloginfo(‘name’); ?>站点名称<?php bloginfo(‘description’); ?>站点描述<?php get_stylesheet_directory(); ?>样式文件所在目录<?php bloginfo(‘stylesheet_url’); ?>样式文件链接<?php bloginfo(‘pingback_url’); ?>pingback 链接<?php bloginfo(‘template_url’); ?>模板文件所在目录链接<?php bloginfo(‘version’); ?>WordPress 版本<?php bloginfo(‘atom_url’); ?>atom 链接<?php bloginfo(‘rss2_url’); ?>rss2 链接<?php bloginfo(‘url’); ?>网站根链接<?php bloginfo(‘html_type’); ?>html 版本<?php bloginfo(‘charset’); ?>字符集导航菜单
<?php wp_nav_menu(); ?>
<?php wp_nav_menu( array(‘menu’ => ‘Project Nav’ )); ?>
<ul id=”menu”><li <?php if(is_home()) { ?> class=”current-cat” <?php } ?>><a href=”<?php bloginfo(‘home’); ?>”>Home</a></li><?php wp_list_categories(‘title_li=&orderby=id’);?></ul>
<ul id=”menu”><li <?php if(is_home()) { ?> class=”current-page-item” <?php } ?>><a href=”<?php bloginfo(‘home’); ?>”>Home</a></li><?php wp_list_pages(‘sort_column=menu_order&depth=1&title_li=’);?></ul>
模板函数
<?php the_content(); ?>文章内容<?php if(have_posts()): ?>检查是否有文章<?php while(have_posts()): the_post(); ?>显示文章<?php endwhile; ?>结束循环<?php endif; ?>结束判断<?php get_header(); ?>头部模板内容<?php get_sidebar(); ?>侧边栏模板内容<?php get_footer(); ?>底部模板内容<?php the_time(‘m-d-y’); ?>显示时间,格式为:’08-18-07′<?php comments_popup_link(); ?>显示到文章留言的链接<?php the_title(); ?>文章标题<?php the_permalink(); ?>文章链接<?php the_category(); ?>文章分类<?php the_author(); ?>文章作者<?php the_ID(); ?>文章 ID<?php edit_post_link(); ?>文章编辑链接<?php wp_list_bookmarks(); ?>友情链接列表<?php comments_template(); ?>留言模板内容<?php wp_list_pages(); ?>所有页面列表<?php wp_list_categories(); ?>所有分类列表<?php next_post_link(‘%link’); ?>下一篇文章链接<?php previous_post_list(‘%link’); ?>上一篇文章链接<?php get_calendar(); ?>显示文章日历<?php wp_get_archives(); ?>存档链接列表<?php posts_nav_link(); ?>上一篇和下一篇文章链接<?php rewind_posts(); ?>重回开头开始第二个循环主循环
<?php if(have_posts()) { ?><?php while(have_posts()) { ?><?php the_post(); ?><?php // custom post content code for title, excerpt and featured image ?><?php } // end while ?><?php } // end if ?>其他函数
/%postname%/自定义固定链接<?php include(TEMPLATEPATH . ‘/x’); ?>从模板文件夹加载文件<?php the_search_query(); ?>搜索表单返回的值<?php _e(‘Message’); ?>返回翻译之后的文本<?php wp_register(); ?>注册链接<?php wp_loginout(); ?>登录/登出链接<!–nextpage–>将文章那个内容分页<!–more–>截断文章内容,并创建到全文的链接<?php wp_meta(); ?>管理元链接<?php timer_start(); ?>开始计时 (header.php)<?php timer_stop(1); ?>停止计时 (footer.php)<?php echo get_num_queries(); ?>显示生成当前页面所需的查询数页面判断函数函 数 名 称用 法说 明is_home()<?php if(is_home())?> true 为首页,false 为第二页判断是否为第一页is_paged()<?php if(is_paged())?>当页面为第二页时,?paged=2is_single()<?php if(is_single())?> <?php if(is_single(2))?>文章 id <?php if(is_single(‘标题’))?>文章标题是否为文章单一页面,如要针对特定文章时,可在()中加入文章的 ID 参数,或标题文字is_page()<?php if(is_page())?> <?php if(is_page(2))?>分页 id <?php if(is_page(‘标题’))?>分页标题是否为分页,与单一页面用法相同,在()中可再针对个別的分页 ID 与标题作判断is_category()<?php if(is_category())?> <?php if(is_category(2))?>分类 id <?php if(is_category(‘标题’))?>分类标题 <?php if(is_category(array(6,7)))?>分类 id 为 6、7 <?php if(is_category(array(6,7,’minwt’)))?>分类 id 为 6、7 或 minwt是否为分类,()中可输入分类 ID 与名称,再个別作判断is_archive()<?php if(is_archive())?>是否为存档页面is_search()<?php if(is_search())?>是否为搜索面is_404<?php if(is_404())?>是否为找不到画面 404is_tag()<?php if(is_tag())?>是否为标签页面is_date()<?php if(is_date())?>是否为日期存档页面is_year()<?php if(is_year())?>是否为年份存档页面is_month()<?php if(is_month())?>是否为月份存档页面is_day()<?php if(is_day())?>是否为天存档页面
<!--?php if(is_single()):?-->//这里写你想显示的内容,包括函数<!--?php endif;?-->
评论(0)