我正在本地服务器上开发基于wordpress的网站。转移到测试服务器(也将是生产一个)自定义分类循环中断。我用WP_Query hack修复了它,但仍然在寻找发生这种情况的原因。
本地服务器规范:
运行Mac OS X 10.8.3
php -v
PHP 5.3.15 with Suhosin-Patch (cli) (built: Aug 28 2012 18:19:13)
Copyright (c) 1997-2012 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2012 Zend Technologies
mysql -v
Server version: 5.6.11 MySQL Community Server (GPL)
测试服务器规范:
Linux的
的phpinfo(); (链接将被刻录)http://htcone.htcfans.cz/phpinfo.php
Registring taxonomies和post_types(functions.php的一部分):
/* Post_types and taxonomies */
// Add post types
add_action( 'init', 'add_post_types' );
function add_post_types() {
register_post_type('produkt', array( 'label' => 'Produkty','description' => '','public' => true,'show_ui' => true,'show_in_menu' => true,'capability_type' => 'post','hierarchical' => false,'rewrite' => array('slug' => 'produkt'),'query_var' => true,'exclude_from_search' => true,'supports' => array('title','editor','excerpt','trackbacks','custom-fields','revisions','thumbnail','author','page-attributes',),'taxonomies' => array('produkty'),'labels' => array (
'name' => 'Produkty',
'singular_name' => 'Produkt',
'menu_name' => 'Produkty',
'add_new' => 'Add Produkt',
'add_new_item' => 'Add New Produkt',
'edit' => 'Edit',
'edit_item' => 'Edit Produkt',
'new_item' => 'New Produkt',
'view' => 'View Produkt',
'view_item' => 'View Produkt',
'search_items' => 'Search Produkty',
'not_found' => 'No Produkty Found',
'not_found_in_trash' => 'No Produkty Found in Trash',
'parent' => 'Parent Produkt',
),) );
}
// Add taxonomies
add_action( 'init', 'add_some_taxs' );
function add_some_taxs() {
register_taxonomy('produkty',array (
0 => 'produkt',
),array( 'hierarchical' => true, 'label' => 'Typy produktů','show_ui' => true,'query_var' => true,'rewrite' => array('slug' => 'produkty'),'singular_label' => 'Typ produktu') );
}
TEMPLATE HIEARCHY:
使用经典层次结构的主题:http://codex.wordpress.org/Template_Hierarchy
taxonomy-produkty.php循环 - 没有黑客攻击(仅适用于本地计算机)
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="grid-4 product post">
<?php if ( has_post_thumbnail() ) : ?>
<div class="thumb">
<?php the_post_thumbnail('product-full','class=scale'); ?>
</div>
<?php endif; ?>
<h2 class="title">
<?php the_title(); ?>
</h2>
<div class="content">
<?php the_content(); ?>
</div>
</div>
<?php endwhile; endif; ?>
这个hack修复了测试服务器上没有工作的taxonomy-produkty.php循环:
global $query_string;
query_posts($query_string . "&post_type=produkt");
//the loop (code is upper)
//Reset Query
wp_reset_query();
从本地服务器转移到测试服务器
MySQL的
FTP
我的问题是为什么循环在本地服务器上工作但是在TESTIONG ONE上断电
如果你读到这里,你就是我最喜欢的人: - )
P.S。请原谅我的英语不好。