文件操作 - menu.php
返回文件管理
返回主菜单
删除本文件
文件: /storage/v12552/jimbrandstatter/public_html/wp-content/themes/Total/inc/footer/bottom/menu.php
编辑文件内容
<?php namespace TotalTheme\Footer\Bottom; \defined( 'ABSPATH' ) || exit; /** * Footer Menu. */ class Menu { /** * Returns theme location for the footer bottom menu. */ public static function get_theme_location() { $location = 'footer_menu'; /** * Filters the footer bottom menu theme location. * * @param string $location. */ $location = (string) \apply_filters( 'totaltheme/footer/bottom/menu/theme_location', $location ); /*** deprecated ***/ $location = (string) \apply_filters( 'wpex_footer_menu_location', $location ); return $location; } /** * Output wrapper class. */ public static function wrapper_class() { $classes = [ 'wpex-mt-10', ]; $align = \get_theme_mod( 'bottom_footer_text_align' ); if ( ! $align || ! \in_array( $align, [ 'left', 'center', 'right' ] ) ) { $classes[] = 'wpex-md-mt-0'; } /** * Filters the footer bottom menu element class. * * @param array $class */ $classes = (array) \apply_filters( 'totaltheme/footer/bottom/menu/wrapper_class', $classes ); /*** deprecated ***/ $classes = (array) \apply_filters( 'wpex_footer_bottom_menu_class', $classes ); if ( $classes ) { echo 'class="' . \esc_attr( \implode( ' ', \array_unique( $classes ) ) ) . '"'; } } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件