This file contains 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
/** | |
* Split HSL(a) Color code. | |
* | |
* Get the HSL(a) color code and return an array with each value of HSL. | |
* | |
* @since 0.1.0 | |
* | |
* @param {string} HSLa HSL(a) color code. | |
* | |
* @return {array} Return each value of HSLa code in an array. |
This file contains 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
// Add this filter inside your function.php | |
add_filter('acf/pre_save_block', 'add_acf_block_identifier'); | |
function add_acf_block_identifier($attributes) { | |
if (empty($attributes['id'])) { | |
$attributes['id'] = 'acf-block-' . uniqid(); | |
} | |
return $attributes; | |
} |
This file contains 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 | |
/** | |
* Allow the shop manager to edit the "privacy" page on WooCommerce | |
* | |
* @return void | |
*/ | |
function update_shop_manager_caps() { | |
if (get_role('shop_manager')) { |
This file contains 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
User-agent: * | |
Disallow: /feed/ | |
Disallow: /cgi-bin/ | |
Disallow: /trackback/ | |
Disallow: /xmlrpc.php | |
Disallow: /blackhole/ | |
Disallow: /transfer/ | |
Disallow: /tweets/ | |
Disallow: /mint/ |