$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>customization - Issue with navigation bar in child theme|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

customization - Issue with navigation bar in child theme

matteradmin10PV0评论

I have created a child theme of the evolve theme. The evolve theme was not edited before localy and was just downloaded from the offical site.

functions.php of child theme:

<?php
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
function my_theme_enqueue_styles() {
    wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );

}
?>

style.css of child theme:

/*
Theme Name:   evolve Child
Theme URI:    [/]
Description:  evolve Child Theme
Author:       Michael
Author URI:   []
Template:     evolve
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  .0.html
Tags:         evolve,child
Text Domain:  evolve -child
*/

After activating the child the in the wordpress ui, the arrow of the navigation bar was crashed (please look screenshot):

broken navigation bar in child theme

navigation bar in standard theme

Can you tell me how this could occur and can I somehow fix this issue? I’m very new at wordpress, so I hope the informations in my questions are correct and complete. Please refer if you need more informations.

Thanks a lot!

Post a comment

comment list (0)

  1. No comments so far