: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
* The template for the menu container of the panel.
* Override this template by specifying the path where it is stored (templates_path) in your Redux config.
* @author Redux Framework
* @package ReduxFramework/Templates
<div class="redux-sidebar">
<ul class="redux-group-menu">
foreach ( $this->parent->sections as $k => $section ) {
$the_title = $section['title'] ?? '';
foreach ( $this->parent->options_class->hidden_perm_sections as $num => $section_title ) {
if ( $section_title === $the_title ) {
if ( isset( $section['customizer_only'] ) && true === $section['customizer_only'] ) {
if ( false === $skip_sec ) {
echo( $this->parent->render_class->section_menu( $k, $section ) ); // phpcs:ignore WordPress.Security.EscapeOutput
* Action 'redux/page/{opt_name}/menu/after'
* @param object $this ReduxFramework
do_action( "redux/page/{$this->parent->args['opt_name']}/menu/after", $this ); // phpcs:ignore WordPress.NamingConventions.ValidHookName