Additonal hooks

This commit is contained in:
Mike Jolley 2012-08-08 16:57:32 +01:00
parent bbfd5ea37d
commit 1217228bda
5 changed files with 47 additions and 39 deletions

View File

@ -10,97 +10,99 @@
*/
get_header('shop'); ?>
<?php
/**
<?php
/**
* woocommerce_before_main_content hook
*
* @hooked woocommerce_output_content_wrapper - 10 (outputs opening divs for the content)
* @hooked woocommerce_breadcrumb - 20
*/
*/
do_action('woocommerce_before_main_content');
?>
<h1 class="page-title">
<?php if ( is_search() ) : ?>
<?php
printf( __( 'Search Results: &ldquo;%s&rdquo;', 'woocommerce' ), get_search_query() );
<?php
printf( __( 'Search Results: &ldquo;%s&rdquo;', 'woocommerce' ), get_search_query() );
if ( get_query_var( 'paged' ) )
printf( __( '&nbsp;&ndash; Page %s', 'woocommerce' ), get_query_var( 'paged' ) );
?>
<?php elseif ( is_tax() ) : ?>
<?php echo single_term_title( "", false ); ?>
<?php else : ?>
<?php
<?php
$shop_page = get_post( woocommerce_get_page_id( 'shop' ) );
echo apply_filters( 'the_title', ( $shop_page_title = get_option( 'woocommerce_shop_page_title' ) ) ? $shop_page_title : $shop_page->post_title );
?>
<?php endif; ?>
</h1>
<?php if ( is_tax() && get_query_var( 'paged' ) == 0 ) : ?>
<?php if ( is_tax( array( 'product_cat', 'product_tag' ) ) && get_query_var( 'paged' ) == 0 ) : ?>
<?php echo '<div class="term-description">' . wpautop( wptexturize( term_description() ) ) . '</div>'; ?>
<?php elseif ( is_tax() && get_query_var( 'paged' ) == 0 ) : ?>
<?php do_action( 'woocommerce_term_description' ); ?>
<?php elseif ( ! is_search() && get_query_var( 'paged' ) == 0 && ! empty( $shop_page ) && is_object( $shop_page ) ) : ?>
<?php echo '<div class="page-description">' . apply_filters( 'the_content', $shop_page->post_content ) . '</div>'; ?>
<?php endif; ?>
<?php if ( have_posts() ) : ?>
<?php do_action('woocommerce_before_shop_loop'); ?>
<ul class="products">
<?php woocommerce_product_subcategories(); ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php woocommerce_get_template_part( 'content', 'product' ); ?>
<?php endwhile; // end of the loop. ?>
</ul>
<?php do_action('woocommerce_after_shop_loop'); ?>
<?php else : ?>
<?php if ( ! woocommerce_product_subcategories( array( 'before' => '<ul class="products">', 'after' => '</ul>' ) ) ) : ?>
<p><?php _e( 'No products found which match your selection.', 'woocommerce' ); ?></p>
<?php endif; ?>
<?php endif; ?>
<div class="clear"></div>
<?php
/**
<?php
/**
* woocommerce_pagination hook
*
* @hooked woocommerce_pagination - 10
* @hooked woocommerce_catalog_ordering - 20
*/
do_action( 'woocommerce_pagination' );
*/
do_action( 'woocommerce_pagination' );
?>
<?php
/**
/**
* woocommerce_after_main_content hook
*
* @hooked woocommerce_output_content_wrapper_end - 10 (outputs closing divs for the content)
*/
do_action('woocommerce_after_main_content');
*/
do_action('woocommerce_after_main_content');
?>
<?php
/**
<?php
/**
* woocommerce_sidebar hook
*
* @hooked woocommerce_get_sidebar - 10
*/
do_action('woocommerce_sidebar');
*/
do_action('woocommerce_sidebar');
?>
<?php get_footer('shop'); ?>

View File

@ -1,6 +1,6 @@
<?php
/**
* The Template for displaying products in a product category. Simple includes the archive template.
* The Template for displaying products in a product category. Simply includes the archive template.
*
* Override this template by copying it to yourtheme/woocommerce/taxonomy-product_cat.php
*

View File

@ -1,6 +1,6 @@
<?php
/**
* The Template for displaying products in a product tag. Simple includes the archive template.
* The Template for displaying products in a product tag. Simply includes the archive template.
*
* Override this template by copying it to yourtheme/woocommerce/taxonomy-product_tag.php
*

View File

@ -45,9 +45,11 @@ if ( ! function_exists( 'woocommerce_content' ) ) {
<?php endif; ?>
</h1>
<?php if ( is_tax() ) : ?>
<?php if ( is_tax( array( 'product_cat', 'product_tag' ) ) && get_query_var( 'paged' ) == 0 ) : ?>
<?php echo '<div class="term-description">' . wpautop( wptexturize( term_description() ) ) . '</div>'; ?>
<?php elseif ( ! is_search() && ! empty( $shop_page ) && is_object( $shop_page ) ) : ?>
<?php elseif ( is_tax() && get_query_var( 'paged' ) == 0 ) : ?>
<?php do_action( 'woocommerce_term_description' ); ?>
<?php elseif ( ! is_search() && get_query_var( 'paged' ) == 0 && ! empty( $shop_page ) && is_object( $shop_page ) ) : ?>
<?php echo '<div class="page-description">' . apply_filters( 'the_content', $shop_page->post_content ) . '</div>'; ?>
<?php endif; ?>

View File

@ -562,6 +562,8 @@ class Woocommerce {
/**
* Taxonomies
**/
do_action( 'woocommerce_register_taxonomy' );
$admin_only_query_var = ( is_admin() ) ? true : false;
register_taxonomy( 'product_type',
@ -736,6 +738,8 @@ class Woocommerce {
/**
* Post Types
**/
do_action( 'woocommerce_register_post_type' );
register_post_type( "product",
array(
'labels' => array(