Skip to content

Instantly share code, notes, and snippets.

@atanemani
atanemani / mrj-wp-remove-parent-category-from-url.php
Last active November 19, 2023 11:58
How to remove paretn categories slug from child-categories URL?
<?php
add_filter( 'woocommerce_taxonomy_args_product_cat', 'mrj_remove_parent_category_from_url' );
function mrj_remove_parent_category_from_url( $args ) {
$args['rewrite']['hierarchical'] = false;
return $args;
}
@troutacular
troutacular / is_localhost
Created May 30, 2015 00:02
PHP - Check if localhost
// Check if we are in a local environment
function is_localhost() {
// set the array for testing the local environment
$whitelist = array( '127.0.0.1', '::1' );
// check if the server is in the array
if ( in_array( $_SERVER['REMOTE_ADDR'], $whitelist ) ) {