文件操作 - post.php
返回文件管理
返回主菜单
删除本文件
文件: /storage/v12552/stanleysteamer/public_html/wp-content/themes/bricks/template-parts/post.php
编辑文件内容
<?php namespace Bricks; $post_id = get_the_ID(); $post_header_classes = 'bricks-post-header'; $post_header_style = ''; if ( has_post_thumbnail( $post_id ) ) { $post_header_classes .= ' has-image'; $post_header_style = ' style="background-image: url(' . get_the_post_thumbnail_url( $post_id, BRICKS_DEFAULT_IMAGE_SIZE ) . ')"'; } ob_start(); ?> <div class="<?php echo $post_header_classes; ?>"<?php echo $post_header_style; ?>> <div class="brxe-container"> <?php $post_title = new Element_Post_Title( [ 'settings' => [ 'tag' => 'h1', ], ] ); $post_title->load(); $post_title->init(); $post_meta = new Element_Post_Meta( [ 'settings' => [ 'meta' => [ [ 'dynamicData' => '{author_name}' ], [ 'dynamicData' => '{post_date}' ], [ 'dynamicData' => '{post_comments}' ], ], 'separator' => '·', ] ] ); $post_meta->load(); $post_meta->init(); ?> </div> </div> <article class="brxe-container"> <?php // Password protected if ( post_password_required( get_the_ID() ) ) { echo get_the_password_form( get_the_ID() ); } else { $post_content = new Element_Post_Content(); $post_content->load(); $post_content->init(); ?> <?php $post_author = new Element_Post_Author( [ 'settings' => [ 'avatar' => true, 'name' => true, 'website' => true, 'bio' => true, ] ] ); $post_author->load(); $post_author->init(); ?> <div class="bricks-post-meta-wrapper"> <?php $post_tags = new Element_Post_Taxonomy( [ 'settings' => [ 'style' => 'dark', ], ] ); $post_tags->load(); $post_tags->init(); ?> <?php $post_sharing = new Element_Post_Sharing( [ 'settings' => [ 'items' => [ [ 'service' => 'facebook' ], [ 'service' => 'twitter' ], [ 'service' => 'google' ], [ 'service' => 'linkedin' ], [ 'service' => 'pinterest' ], [ 'service' => 'email' ], ], 'brandColors' => true, ], ] ); $post_sharing->load(); $post_sharing->init(); ?> </div> <?php echo '<h2>' . esc_html__( 'Related posts', 'bricks' ) . '</h2>'; $related_posts = new Element_Related_Posts( [ 'name' => 'related-posts', 'settings' => [ 'content' => [ [ 'dynamicData' => '{post_title:link}', 'tag' => 'h3', ], [ 'dynamicData' => '{post_date}' ], ], ], ] ); $related_posts->load(); $related_posts->init(); ?> <?php $post_comments = new Element_Post_Comments( [ 'settings' => [ 'title' => true, 'avatar' => true, 'submitButtonStyle' => 'primary', 'titleTag' => 'h2', 'cookies' => get_option( 'show_comments_cookies_opt_in' ), // Settings > Discussion > Show comments cookies opt-in checkbox 'label' => true, // Ensure labels are shown 'formTitle' => true, // Ensure the form title (reply title) is shown 'formTitleTag' => 'h2', // Set the appropriate heading tag ], ] ); $post_comments->load(); $post_comments->init(); ?> <?php $post_navigation = new Element_Post_Navigation( [ 'settings' => [ 'image' => true, 'title' => true, 'label' => true, ], ] ); $post_navigation->load(); $post_navigation->init(); } ?> </article> <?php $attributes = [ 'class' => 'layout-default' ]; $html = ob_get_clean(); Frontend::render_content( [], $attributes, $html );
修改文件时间
将文件时间修改为当前时间的前一年
删除文件