This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // checking terms since wc_product are not post terms | |
| function product_cat_contingencies() | |
| { | |
| global $post; | |
| // get the product category term objects | |
| $terms = wp_get_post_terms( $post->ID, 'product_cat' ); | |
| foreach ( $terms as $term ) $categories[] = $term->slug; | |
| if( in_array('custom-tarps', $categories) ) { | |
| return true; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * TSW Listing Nano Directory | |
| * Author: Larry Judd Oliver @tradesouthwest | http://tradesouthwest.com | |
| * Contributors in readme.md file | |
| * License in LICENSE.md file | |
| * ///////////////////////////////////////////////////////////////////// | |
| * MUST BE USED ALONG WITH [list-images.php] | |
| * \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ | |
| */ |
OlderNewer