一、 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 程式碼
- 注: 也就是位於<head> 和</head> 之間的 PHP 程式碼
- <?php bloginfo('name'); ?>
- WordPress 主題樣式表檔案 style.css 的相對地址
- <?php bloginfo('stylesheet_url'); ?>
- <?php bloginfo('pingback_url'); ?>
- <?php bloginfo('template_url'); ?>
- <?php bloginfo('version'); ?>
- <?php bloginfo('atom_url'); ?>
- <?php bloginfo('rss2_url'); ?>
- <?php bloginfo('url'); ?>
- <?php bloginfo('name'); ?>
- <?php bloginfo('html_type'); ?>
- <?php bloginfo('charset'); ?>
三、 WordPress 主體模板 PHP 程式碼
- <?php if(have_posts()) : ?>
- <?php while(have_posts()) : the_post(); ?>
- <?php the_time('m-d-y') ?>
- <?php comments_popup_link(); ?>
- <?php the_category(', ') ?>
- <?php edit_post_link(); ?>
- <?php get_links_list(); ?>
- <?php comments_template(); ?>
- <?php wp_list_pages(); ?>
- <?php next_post_link('%link') ?>
- <?php previous_post_link('%link') ?>
- <?php wp_get_archives() ?>
- 顯示較新日誌連結 (上一頁) 和較舊日誌連結 (下一頁)
- <?php posts_nav_link(); ?>
- <?php bloginfo('description'); ?>
四、其它的一些 WordPress 模板程式碼
- <?php the_search_query(); ?>
- <?php echo get_num_queries(); ?>
五、 WordPress 呼叫的常用方法
- 1 、 WordPress 最新文章的呼叫可以使用一行很簡單的模板標籤 wp_get_archvies 來實現. 程式碼如下:
- <?php get_archives('postbypost', 10); ?>
- <?php wp_get_archives('type=postbypost&limit=20&format=custom'); ?>
- 後面這個程式碼顯示你部落格中最新的 20 篇文章,其中 format=custom 這裡主要用來自定義這份文章列表的顯示樣式。具體的引數和使用方法你可 以參考官方的使用說明- wp_get_archvies 。 (fromat=custom 也可以不要,預設以 UL 列表顯示文章標題。)
補充: 透過 WP 的 query_posts() 函式也能呼叫最新文章列表, 雖然程式碼會比較多一點,但可以更好的控制 Loop 的顯示,比如你可以設定是否顯示摘要。具體的使用方法也可以檢視官方的說明。
- <?php
- $rand_posts = get_posts(『numberposts=10&orderby=rand』);
- foreach( $rand_postsas$post ) :
- ?>
- <!–下面是你想自定義的 Loop–>
- <li><a href="<?php%20the_permalink();%20?>"><?php the_title(); ?></a></li>
- <?php endforeach; ?>
- 3. WordPress 呼叫最新留言
下面是我之前在一個 WordPress 主題中代到的最新留言程式碼,具體也記不得是哪個主題了。該程式碼直接呼叫資料庫顯示一份最新留言。其中 LIMIT10 限制留言顯示數量。綠色部份則是每條留言的輸出樣式。
- <?php
- global$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_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
- post_password = "
- ORDER BY comment_date_gmt DESC
- LIMIT 10";
- $comments = $wpdb->get_results($sql);
- $output = $pre_HTML; foreach ($commentsas$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
- $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%20the_permalink()%20?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title();?> <?php comments_number(' ','(1)','(%)'); ?></a></li>
- <?php
- endwhile;
- }
- }
- wp_reset_query();
- ?>
- <?php $posts = get_posts( "category=4&numberposts=10" ); ?>
- <?php if( $posts ) : ?>
- <ul><?php foreach( $postsas$post ) : setup_postdata( $post ); ?>
- <li>
- <a href="<?php%20the_permalink()%20?>" rel=」bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a>
- </li>
- <?php endforeach; ?>
- </ul>
- <?php endif; ?>
- <?php
- global$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_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
- post_password = "
- ORDER BY comment_date_gmt DESC
- LIMIT 10";
- $comments = $wpdb->get_results($sql);
- $output = $pre_HTML;
- foreach ($commentsas$comment) {
- $output .= "
<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 頭像的評論輸出
- <?php
- global$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 ($commentsas$comment) {
- $output .= "
<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 是評論數量。
- <?php $count_posts = wp_count_posts(); echo$published_posts = $count_posts->publish;?>
- <?php $count_posts = wp_count_posts(); echo$draft_posts = $count_posts->draft; ?>
- <?php echo$wpdb->get_var("SELECT COUNT(*) FROM $wpdb->comments");?>
- <?php echofloor((time()-strtotime("2008-8-18"))/86400); ?>
- <?php echo$count_tags = wp_count_terms('post_tag'); ?>
- <?php $count_pages = wp_count_posts('page'); echo$page_posts = $count_pages->publish; ?>
- <?php echo$count_categories = wp_count_terms('category'); ?>
- <?php $link = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->links WHERE link_visible = 'Y'"); echo$link; ?>
- <?php $users = $wpdb->get_var("SELECT COUNT(ID) FROM $wpdb->users"); echo$users; ?>
- <?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; ?>
- is_author('Elite Hacker')
- 上面是透過不同的判斷實現以年、月、日、時間等方式來顯示歸檔
- 判斷是否翻頁,比如你當前的 blog 是 http://domain.com 顯示 http://domain.com?paged=2 的時候,這個判斷將返 回真,透過這個函式可以配合 is_home 來控制某些只能在首頁顯示的介面,例如:
//這裡寫你想顯示的內容,包括函式
或者:
- <?php if(is_home() && !is_paged() ):?>
//這裡寫你想顯示的內容,包括函式
顯示 Blogroll 中的連結;
<!–smilies–>- <?php
- function<s/ol/li .= "
- pan> wp_smilies() { - global$wpsmiliestrans;
- if ( !get_option('use_smilies') or (emptyempty($wpsmiliestrans))) return;
- $smilies = array_unique($wpsmiliestrans);
- $link=";
- foreach ($smiliesas$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> ";
- }
- echo '<div>'.$link.'</div>';
- }
- ?>
- <?php wp_smilies();?>
- <!–smilies—>
- 將以上程式碼複製到 comments.php 中合適的位置:
留著自己學習之用!