=wp_kses( SWELL::get_setting( 'pr_notation_s_text' ), SWELL::$allowed_text_html )?>
SWELL::get_setting( 'show_meta_cat' ),
'show_tag' => SWELL::get_setting( 'show_meta_tag' ),
'show_tax' => SWELL::get_setting( 'show_meta_tax' ),
] );
// 公開日・更新日
SWELL::get_parts( 'parts/single/item/times', [
'posted_time' => SWELL::get_setting( 'show_meta_posted' ) ? $posted_time : null,
'modified_time' => SWELL::get_setting( 'show_meta_modified' ) ? $modified_time : null,
] );
// 著者
if ( SWELL::get_setting( 'show_meta_author' ) ) :
$post_data = get_post( $the_id );
SWELL::pluggable_parts( 'the_post_author', [ 'author_id' => $post_data->post_author ] );
endif;
?>