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
menu.superGuacamole( { | |
threshold: 768, // Minimal menu width, when this plugin activates | |
minChildren: 3, // Minimal visible children count | |
childrenFilter: ‘.menu-item’, // Child elements selector | |
menuTitle: moreButtonText, // Menu title | |
menuUrl: ‘#’, | |
templates: { | |
menu: |
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
menu.superGuacamole( { | |
threshold: 768, // Minimal menu width, when this plugin activates | |
minChildren: 3, // Minimal visible children count | |
childrenFilter: ‘.menu-item’, // Child elements selector | |
menuTitle: moreButtonText, // Menu title |
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
ini_set('log_errors','On'); | |
ini_set('display_errors','Off'); | |
ini_set('error_reporting', E_ALL ); | |
define('WP_DEBUG', false); | |
define('WP_DEBUG_LOG', true); | |
define('WP_DEBUG_DISPLAY', false); |
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 | |
/** | |
* Default manifest file | |
* | |
* @var array | |
*/ | |
$settings = array( | |
'xml' => array( | |
'enabled' => true, | |
'use_upload' => 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
add_filter( 'your-post-type_post_type_args', '_my_rewrite_slug' ); // Here replace "your-post-type" with the actual post type, e.g., "cherry_services", "cherry-projects" | |
function _my_rewrite_slug( $args ) { | |
$args['rewrite']['slug'] = 'our-services'; // Replace "our-services" with your preferable slug | |
return $args; | |
} |
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
body, p, h1, h2, h3, h4, h5, h6 { | |
-moz-hyphens: none !important; | |
-ms-hyphens: none !important; | |
-webkit-hyphens: none !important; | |
hyphens: none !important;} |
OlderNewer