mirror of
https://gh.wpcy.net/https://github.com/presscustomizr/hueman.git
synced 2026-04-26 16:44:27 +08:00
* New settings organization. In the customizer, the settings have been reorganized in 5 panels : Global settings, Header, Content, Footer, Dynamic Sidebars and Widgets. * Added a new way to create dynamic content with widgets for a given context (home, page, archive ...) and in a specific location of the page ( right sidebar, footer left, ...) * Added backward compatibility for the renamed functions used in the templates, like alx_social_links() now is hu_social_links() * Fixed backward compatibility issue with already declared old functions in child theme * Added back the featured-category option * Fixed undefined function ot_register_meta_box() * Fixed blog page sidebars not showing up * Fixed alx_layout_class() function undefined in child themes
12 lines
No EOL
564 B
PHP
12 lines
No EOL
564 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
|
|
*
|
|
*/ |