// 本文
echo apply_filters( 'thk_content', '' );
if( function_exists('dynamic_sidebar') === true ) {
if( isset( $luxe['amp'] ) ) {
if( is_active_sidebar('post-under-1-amp') === true ) {
$amp_widget = thk_amp_dynamic_sidebar( 'post-under-1-amp' );
if( !empty( $amp_widget ) ) echo $amp_widget;
}
}
else {
if( is_active_sidebar('post-under-1') === true ) {
dynamic_sidebar( 'post-under-1' );
}
}
}
?>