Ayarlar > kalıcı bağlantı ayarlarını kaydettiniz mi? Değişiklik yapmadan kaydedin bakalım olacak mı. Veya gün ve isim olarak değiştirin ve kaydedin.
Yaptım malesef ama olmadı:(
Ek Olarak:
birde Wp Sef URL eklentisini indirip kurun.
Kurdum bişey değişmedi nasıl ayar yapmam lazım?
Ek Olarak: index.php nin içeriği
if(get_option('ebuy_home') == "blog") { ?>
Recent products
$temp = $wp_query;
$wp_query= null;
$wp_query = new WP_Query();
$wp_query->query('post_type=goods'.'&paged='.$paged);
?>
have_posts()) : $wp_query->the_post(); ?>
Category.php dosyası yok malesef ama bu temada normal post eklemiyorsun goods diye bişi var
post-types.php şunun içeriğide soyle
/* Goods post type*/
function post_type_goods() {
register_post_type(
'goods',
array( 'public' => true,
'publicly_queryable' => true,
'has_archive' => true,
'hierarchical' => false,
'menu_icon' => get_stylesheet_directory_uri() . '/images/box.png',
'labels'=>array(
'name' => _x('Goods', 'post type general name'),
'singular_name' => _x('Goods', 'post type singular name'),
'add_new' => _x('Add New', 'Goods'),
'add_new_item' => __('Add New Goods'),
'edit_item' => __('Edit Goods'),
'new_item' => __('New Goods'),
'view_item' => __('View Goods'),
'search_items' => __('Search Goods'),
'not_found' => __('No Goods found'),
'not_found_in_trash' => __('No Goods found in Trash'),
'parent_item_colon' => ''
),
'show_ui' => true,
'menu_position'=>5,
'query_var' => true,
'rewrite' => true,
'rewrite' => array( 'slug' => 'item', 'with_front' => FALSE,),
'register_meta_box_cb' => 'mytheme_add_box',
'supports' => array(
'title',
'thumbnail',
'custom-fields',
'comments',
'editor'
)
)
);
}
add_action('init', 'post_type_goods');
/* Movie genre taxonomy */
function create_products_taxonomy()
{
$labels = array(
'name' => _x( 'Product types', 'taxonomy general name' ),
'singular_name' => _x( 'Product type', 'taxonomy singular name' ),
'search_items' => __( 'Search Product types' ),
'all_items' => __( 'All Product types' ),
'parent_item' => __( 'Parent Product type' ),
'parent_item_colon' => __( 'Parent Product type:' ),
'edit_item' => __( 'Edit Product type' ),
'update_item' => __( 'Update Product type' ),
'add_new_item' => __( 'Add New Product type' ),
'new_item_name' => __( 'New Product type Name' ),
);
register_taxonomy('product',array('goods'), array(
'hierarchical' => true,
'labels' => $labels,
'show_ui' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'product' ),
));
}
add_action( 'init', 'create_products_taxonomy', 0 );
/* ADD FEATURED TERM */
function add_product_term_featured() {
if(!is_term('Featured', 'product')){
wp_insert_term('Featured', 'product');
}
}
add_action( 'init', 'add_product_term_featured' );
?>
Ek Olarak: Beyler sorunu buldum post dan atmadıgın için oyle sorun veriyo 20 tane sallama post attım 2. sayfaya gecti.
Onu sadece goods olarak nasıl halledebiliriz çunku urun kadar post atmam gerekiyor:(