mirror of
https://gh.wpcy.net/https://github.com/presscustomizr/hueman.git
synced 2026-04-25 02:27:08 +08:00
25 lines
No EOL
957 B
PHP
25 lines
No EOL
957 B
PHP
<?php
|
|
|
|
//Do not remove this
|
|
load_template( get_template_directory() . '/functions/init-core.php' );
|
|
|
|
/**
|
|
* The best and safest way to extend the Humean WordPress theme with your own custom code is to create a child theme.
|
|
* You can add temporary code snippets and hacks to the current functions.php file, but unlike with a child theme, they will be lost on upgrade.
|
|
*
|
|
* If you don't know what a child theme is, you really want to spend 5 minutes learning how to use child themes in WordPress, you won't regret it :) !
|
|
* https://codex.wordpress.org/Child_Themes
|
|
*
|
|
*/
|
|
|
|
//delete_option( 'hu_theme_options' );
|
|
|
|
|
|
// delete_post_meta( ha_get_skope_post_id(), 'hueman_czr_all_page' );
|
|
// foreach ( get_post_meta( ha_get_skope_post_id() ) as $key => $value) {
|
|
// delete_post_meta( ha_get_skope_post_id(), $key );
|
|
// }
|
|
|
|
// $options = get_option( 'hu_theme_options');
|
|
// $options['_primary-example-wgte'] = 's100';
|
|
// update_option( 'hu_theme_options', $options );
|