非表示

このページのカスタマイズ

/** ==================================================
 * Filter of Fixed Bottom Menu
 *
 * fbm_hide
 * @param bool $hide  hide.
 */
function fixed_bottom_menu_hide( $hide ) {

	if ( 108 === get_the_ID() || 110 === get_the_ID() ) {
		$hide = true;
	}
	return $hide;

}
add_filter( 'fbm_hide', 'fixed_bottom_menu_hide', 10, 1 );

投稿 ID を指定してメニューを非表示にします。


ログインユーザーのみに見えるようにするためのカスタマイズ

/** ==================================================
 * Filter of Fixed Bottom Menu
 *
 * fbm_hide
 * @param bool $hide  hide.
 */
function fixed_bottom_menu_login_only( $hide ) {
	if ( ! is_user_logged_in() ) {
		$hide = true;
	}
	return $hide;
}
add_filter( 'fbm_hide', 'fixed_bottom_menu_login_only', 10, 1 );