2012-08-14 16 views
-1

我已经建立了基于2011主题的wordpress模板。我似乎在某个地方出了问题......在一个单一的职位上,我没有拉头。WordPress - 单帖不拉头

我已经完全删除了single.php,试图找出问题并且页面仍显示相同。

这里是我指的是网页...

http://bost.themediafeed.com/taken-on-a-recent-lunch-and-learn-tour-of-the/attachment/372/

<?php 

/** 
* The Header for our theme. 
* 
* Displays all of the <head> section and everything up till <div id="main"> 
* 
* @package WordPress 
* 
*/ 

?><!DOCTYPE html> 



<head> 

<meta charset="<?php bloginfo('charset'); ?>" /> 

<meta name="viewport" content="width=device-width" /> 

<title><?php 

/* 

* Print the <title> tag based on what is being viewed. 

*/ 

global $page, $paged; 



wp_title('|', true, 'right'); 



// Add the blog name. 

bloginfo('name'); 



// Add the blog description for the home/front page. 

$site_description = get_bloginfo('description', 'display'); 

if ($site_description && (is_home() || is_front_page())) 

    echo " | $site_description"; 



// Add a page number if necessary: 

if ($paged >= 2 || $page >= 2) 

    echo ' | ' . sprintf(__('Page %s', 'twentyeleven'), max($paged, $page)); 



?></title> 

<link rel="profile" href="http://gmpg.org/xfn/11" /> 

<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('stylesheet_url'); ?>" /> 

<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> 

<!--[if lt IE 9]> 

<script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script> 

<![endif]--> 

<?php 


if (is_singular() && get_option('thread_comments')) 

    wp_enqueue_script('comment-reply'); 


wp_head(); 

?> 

</head> 
<?php get_header(); ?> 
+1

您可能想在http://wordpress.stackexchange.com上提出此问题。 – 2012-08-14 03:03:59

回答

0

你链接到附件页面,而不是一个职位。如果没有特定的附件页面,我相信附件默认为page.php模板。