文件操作 - author.php
返回文件管理
返回主菜单
删除本文件
文件: /storage/v12552/jimbrandstatter/public_html/wp-content/themes/Total/partials/meta/blocks/author.php
编辑文件内容
<?php /** * Returns author block for use with meta element. * * @package TotalTheme * @subpackage Partials\Meta\Blocks * @version 5.10.1 */ defined( 'ABSPATH' ) || exit; $singular = $args['singular'] ?? true; $has_link = $args['link'] ?? true; $icon = $args['icon'] ?? 'user-o'; if ( $singular ) { ?> <li class="meta-author"><?php wpex_theme_icon_html( $icon, 'meta-icon' ); ?><span class="vcard author"><span class="fn"><?php if ( $has_link ) { the_author_posts_link(); } else { the_author(); } ?></span></span></li> <?php } else { ?> <li class="meta-author"><?php wpex_theme_icon_html( $icon, 'meta-icon' ); ?><span class="vcard author"><span class="fn"><?php if ( $has_link ) { the_author_posts_link(); } else { the_author(); } ?></span></span></li> <?php } ?>
修改文件时间
将文件时间修改为当前时间的前一年
删除文件