HEX
Server: Apache
System: Windows NT MAGNETO-ARM 10.0 build 22000 (Windows 10) AMD64
User: Michel (0)
PHP: 7.4.7
Disabled: NONE
Upload Files
File: C:/Apache24/htdocs/wp-content/themes/page-builder-framework/inc/misc.php
<?php
/**
 * Misc.
 *
 * @package Page Builder Framework
 */

defined( 'ABSPATH' ) || die( "Can't access directly" );

/**
 * Main navigation fallback.
 *
 * Is displayed if no menu is selected and user is logged in + able to edit theme options.
 */
function wpbf_main_menu_fallback() {

	if ( ! is_user_logged_in() ) {
		return;
	}

	if ( current_user_can( 'edit_theme_options' ) && is_customize_preview() ) {

		?>

		<ul class="wpbf-menu">
			<li class="menu-item">
				<a href="javascript:void(0)" onclick="parent.wp.customize.panel( 'nav_menus' ).focus()"><?php _e( 'Add Menu', 'page-builder-framework' ); ?></a>
			</li>
		</ul>

		<?php

	} elseif ( current_user_can( 'edit_theme_options' ) ) {

		?>

		<ul class="wpbf-menu">
			<li class="menu-item">
				<a href="<?php echo esc_url( admin_url( '/nav-menus.php' ) ); ?>"><?php _e( 'Add Menu', 'page-builder-framework' ); ?></a>
			</li>
		</ul>

		<?php

	}

}

/**
 * Mobile navigation fallback.
 *
 * Is displayed if no menu is selected and user is logged in + able to edit theme options.
 */
function wpbf_mobile_menu_fallback() {

	if ( ! is_user_logged_in() ) {
		return;
	}

	if ( current_user_can( 'edit_theme_options' ) && is_customize_preview() ) {

		?>

		<ul class="wpbf-mobile-menu">
			<li class="menu-item">
				<a href="javascript:void(0)" onclick="parent.wp.customize.panel( 'nav_menus' ).focus()"><?php _e( 'Add Menu', 'page-builder-framework' ); ?></a>
			</li>
		</ul>

		<?php

	} elseif ( current_user_can( 'edit_theme_options' ) ) {

		?>

		<ul class="wpbf-mobile-menu">
			<li class="menu-item">
				<a href="<?php echo esc_url( admin_url( '/nav-menus.php' ) ); ?>"><?php _e( 'Add Menu', 'page-builder-framework' ); ?></a>
			</li>
		</ul>

		<?php

	}

}

/**
 * Navigation fallback.
 *
 * Is displayed if no menu is selected and user is logged in + able to edit theme options.
 */
function wpbf_menu_fallback() {

	if ( ! is_user_logged_in() ) {
		return;
	}

	if ( current_user_can( 'edit_theme_options' ) && is_customize_preview() ) {

		?>

		<a href="javascript:void(0)" onclick="parent.wp.customize.panel( 'nav_menus' ).focus()"><?php _e( 'Add Menu', 'page-builder-framework' ); ?></a>

		<?php

	} elseif ( current_user_can( 'edit_theme_options' ) ) {

		echo '<a href="' . esc_url( admin_url( '/nav-menus.php' ) ) . '">' . __( 'Add Menu', 'page-builder-framework' ) . '</a>';

	}

}

/**
 * Add description to main menu items.
 *
 * @param string $item_output The menu item's starting HTML output.
 * @param object $item The menu item data object.
 * @param integer $depth Depth of menu item.
 * @param object $args The arguments.
 *
 * @return string The updated menu item's starting HTML output.
 */
function wpbf_menu_description( $item_output, $item, $depth, $args ) {

	if ( 'main_menu' === $args->theme_location && strlen( $item->description ) > 1 ) {

		$item_output .= '<div class="wpbf-menu-description">' . $item->description . '</div>';

	}

	return $item_output;

}
add_filter( 'walker_nav_menu_start_el', 'wpbf_menu_description', 10, 4 );

/**
 * Allow HTML inside menu item description.
 *
 * @param object $menu_item The menu item object.
 *
 * @return object The updated menu item object.
 */
function wpbf_menu_description_html( $menu_item ) {

	if ( isset( $menu_item->post_type ) && 'nav_menu_item' === $menu_item->post_type ) {

		$menu_item->description = apply_filters( 'nav_menu_description', $menu_item->post_content );

	}

	return $menu_item;

}
remove_filter( 'nav_menu_description', 'strip_tags' );
add_filter( 'wp_setup_nav_menu_item', 'wpbf_menu_description_html' );