晋太元中,武陵人捕鱼为业。缘溪行,忘路之远近。忽逢桃花林,夹岸数百步,中无杂树,芳草鲜美,落英缤纷。渔人甚异之,复前行,欲穷其林。 林尽水源,便得一山,山有小口,仿佛若有光。便舍船,从口入。初极狭,才通人。复行数十步,豁然开朗。土地平旷,屋舍俨然,有良田、美池、桑竹之属。阡陌交通,鸡犬相闻。其中往来种作,男女衣着,悉如外人。黄发垂髫,并怡然自乐。 见渔人,乃大惊,问所从来。具答之。便要还家,设酒杀鸡作食。村中闻有此人,咸来问讯。自云先世避秦时乱,率妻子邑人来此绝境,不复出焉,遂与外人间隔。问今是何世,乃不知有汉,无论魏晋。此人一一为具言所闻,皆叹惋。余人各复延至其家,皆出酒食。停数日,辞去。此中人语云:“不足为外人道也。”(间隔 一作:隔绝) 既出,得其船,便扶向路,处处志之。及郡下,诣太守,说如此。太守即遣人随其往,寻向所志,遂迷,不复得路。 南阳刘子骥,高尚士也,闻之,欣然规往。未果,寻病终。后遂无问津者。
|
Server : Apache System : Linux srv.rainic.com 4.18.0-553.47.1.el8_10.x86_64 #1 SMP Wed Apr 2 05:45:37 EDT 2025 x86_64 User : rainic ( 1014) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/tabatabaei/.trash/wp-content.1/plugins/gutenify/core/dist/blocks/post-list/ |
Upload File : |
<?php
/**
* Plugin Name: Gutenify Post List
* Plugin URI: https://gutenify.com
* Description: Post List block.
* Version: 1.0.0
* Author: Gutenify
*
* @package gutenify
*/
defined( 'ABSPATH' ) || exit;
/**
* Renders the block on server.
*
* @param array $attributes The block attributes.
*
* @return string Returns the block content.
*/
function gutenify_render_block_post_list( $attributes ) {
global $post;
$args = array(
'posts_per_page' => ! empty( $attributes['query']['numberOfItems'] ) ? $attributes['query']['numberOfItems'] : 10,
'post_status' => 'publish',
'order' => ! empty( $attributes['query']['order'] ) ? $attributes['query']['order'] : 'desc',
'orderby' => ! empty( $attributes['query']['orderBy'] ) ? $attributes['query']['orderBy'] : 'date',
'suppress_filters' => false,
// 'post__not_in' => array( $post->ID ),
'post_type' => ! empty( $attributes['query']['postTypes'] ) ? (array) $attributes['query']['postTypes'] : 'post',
'category__in' => array(),
);
if ( ! empty( $attributes['query']['selectedCategories'] ) ) {
$args['category__in'] = array_column( $attributes['query']['selectedCategories'], 'id' );
}
if ( ! empty( $attributes['query']['tax']['category'] ) ) {
$args['category__in'] = array_merge( $attributes['query']['tax']['category'], $args['category__in'] );
}
if ( ! empty( $attributes['query']['tax']['tag'] ) ) {
$args['tag__in'] = $attributes['query']['tax']['tag'];
}
if ( ! empty( $attributes['query']['authorIds'] ) ) {
$args['author__in'] = $attributes['query']['authorIds'];
}
if ( ! empty( $attributes['query']['postTypes'] ) && in_array( 'attachment', $attributes['query']['postTypes'] ) ) {
$args['post_status'] = 'inherit';
}
$recent_posts = get_posts( $args );
$formatted_posts = gutenify_get_post_info( $recent_posts );
$block_style = null;
if ( isset( $attributes['className'] ) && strpos( $attributes['className'], 'is-style-horizontal' ) !== false ) {
$block_style = 'horizontal';
} elseif ( isset( $attributes['className'] ) && strpos( $attributes['className'], 'is-style-stacked' ) !== false ) {
$block_style = 'stacked';
}
return gutenify_post_list( $formatted_posts, $attributes );
}
/**
* Renders the list and grid styles.
*
* @param array $posts Current posts.
* @param array $attributes The block attributes.
*
* @return string Returns the block content for the list and grid styles.
*/
function gutenify_post_list( $posts, $attributes ) {
$client_id = ! empty( $attributes['blockClientId'] ) ? $attributes['blockClientId'] : '';
$list_layout = ! empty( $attributes['blockAdvanceOptions']['postListLayout'] ) ? $attributes['blockAdvanceOptions']['postListLayout'] : 'layout-1';
$class_name = array( 'wp-block-gutenify-post-list', 'gutenify-section-' . $attributes['blockClientId'], 'gutenify-post-list-' . $attributes['layout'], 'gutenify--post-list--post-list-' . $list_layout, 'gutenify-post-list-version-2' );
$class = array( 'gutenify-post-list' );
$styles = array();
$block_style = ! empty( $attributes['className'] ) && strpos( $attributes['className'], 'is-style-stacked' ) !== false ? 'stacked' : 'horizontal';
$columns = ! empty( $attributes['columns'] ) ? $attributes['columns'] : 1;
if ( isset( $attributes['className'] ) ) {
array_push( $class_name, $attributes['className'] );
}
if ( isset( $attributes['align'] ) ) {
array_push( $class_name, 'align' . $attributes['align'] );
}
if ( isset( $attributes['columns'] ) ) {
array_push( $class, 'has-columns has-' . $attributes['columns'] . '-columns has-responsive-columns' );
}
if ( isset( $attributes['listPosition'] ) && 'right' === $attributes['listPosition'] && 'horizontal' === $block_style ) {
array_push( $class, 'has-image-right' );
}
if ( isset( $attributes['imageSize'] ) && 'horizontal' === $block_style ) {
array_push( $class, 'has-' . $attributes['imageSize'] . '-image' );
}
if ( isset( $attributes['imageStyle'] ) ) {
array_push( $class, 'has-' . $attributes['imageStyle'] . '-image' );
}
if ( isset( $columns ) ) {
array_push( $class_name, 'gutenify-post-list-col-' . $columns );
}
$class_name = apply_filters( 'gutenify_block_wrapper_class', esc_attr( implode( ' ', $class_name ) ), $attributes );
$block_content = sprintf(
'<div class="%1$s">',
$class_name,
);
$list_items_markup = '';
foreach ( $posts as $post ) {
$list_class = '';
$align_self_class = '';
$list_items_markup .= '<div class="gutenify-post-list-item gutenify-post-list-item-wrapper inner-block-shadow">';
$list_items_markup .= '<div class="gutenify-post-list-item-inner-wrapper">';
if ( ! empty( $attributes['displayFeaturedImage'] ) && null !== $post['thumbnailURL'] && $post['thumbnailURL'] ) {
$list_items_markup .= sprintf(
'<div class="gutenify-post-list-thumb">
<a class="image-hover-zoom" href="%1$s">
<img src="%2$s" />
</a>
</div>',
esc_url( $post['postLink'] ),
esc_url( $post['thumbnailURL'] )
);
if ( 'horizontal' === $block_style && ( isset( $attributes['displayPostContent'] ) && ! $attributes['displayPostContent'] ) && ( isset( $attributes['columns'] ) && 2 >= $attributes['columns'] ) ) {
$align_self_class = 'self-center';
}
} else {
$align_self_class = ' flex-start';
}
$list_items_markup .= sprintf(
'<div class="gutenify-post-list-text-content %s">',
esc_attr( $align_self_class )
);
if ( isset( $attributes['displayPostDate'] ) && $attributes['displayPostDate'] && 'stacked' === $block_style ) {
$list_items_markup .= sprintf(
'<time datetime="%1$s" class="wp-block-gutenify-posts__date">%2$s</time>',
esc_url( $post['date'] ),
esc_html( $post['dateReadable'] )
);
}
$title = $post['title'];
if ( ! $title ) {
$title = _x( '(no title)', 'placeholder when a post has no title', 'gutenify' );
}
$list_items_markup .= sprintf(
'<h3 class="gutenify-post-list-title"><a href="%1$s" rel="bookmark">%2$s</a></h3> ',
$post['postLink'],
$title
);
$meta_data = '';
if ( isset( $attributes['displayPostDate'] ) && $attributes['displayPostDate'] && 'horizontal' === $block_style ) {
$meta_data .= sprintf(
'<span class="posted-on"><time datetime="%1$s" class="gutenify-posts-date">%2$s</time></span>',
esc_html( $post['date'] ),
esc_html( $post['dateReadable'] )
);
}
if ( ! empty( $attributes['displayPostAuthor'] ) ) {
if ( ! get_the_author_meta( 'description' ) && post_type_supports( get_post_type(), 'author' ) ) {
$meta_data .= '<span class="byline">';
$meta_data .= sprintf(
'%s',
'<a href="' . esc_url( get_author_posts_url( $post['author_id'] ) ) . '" rel="author">' . esc_html( get_the_author_meta( 'display_name', $post['author_id'] ) ) . '</a>'
);
$meta_data .= '</span>';
}
}
if ( ! empty( $attributes['displayPostCategories'] ) ) {
/* translators: used between list items, there is a space after the comma. */
$categories_list = get_the_category_list( __( ', ' ), '', $post['ID'] );
if ( $categories_list ) {
$meta_data .= sprintf(
'<span class="cat-links">%s </span>',
$categories_list // phpcs:ignore WordPress.Security.EscapeOutput
);
}
}
if ( ! empty( $meta_data ) ) {
$list_items_markup .= sprintf( '<div class="gutenify-post-list-meta">%1$s</div>', $meta_data );
}
if ( isset( $attributes['displayPostContent'] ) && $attributes['displayPostContent'] ) {
$post_excerpt = $post['postExcerpt'];
$trimmed_excerpt = esc_html( wp_trim_words( $post_excerpt, $attributes['excerptLength'], ' … ' ) );
$list_items_markup .= '<div class="entry-summary">';
$list_items_markup .= sprintf(
'<p>%1$s</p>',
esc_html( $trimmed_excerpt )
);
if ( isset( $attributes['displayPostLink'] ) && $attributes['displayPostLink'] ) {
$list_items_markup .= sprintf(
'<a href="%1$s" class="more-link"><span class="more-button">%2$s<span class="screen-reader-text">%3$s</span></span></a>',
esc_url( $post['postLink'] ),
esc_html( $attributes['postLink'] ),
esc_html( $post['title'] )
);
}
$list_items_markup .= '</div>';
}
$list_items_markup .= '</div></div></div>';
}
$block_content .= $list_items_markup;
// $block_content .= '</div>';
$block_content .= '</div>';
ob_start();
echo $block_content; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
$output = ob_get_contents();
ob_end_clean();
return $output;
}
/**
* Load all translations for our plugin from the MO file.
*/
function gutenify_load_textdomain_block_post_list() {
load_plugin_textdomain( 'gutenify', false, basename( __DIR__ ) . '/languages' );
}
add_action( 'init', 'gutenify_load_textdomain_block_post_list' );
/**
* Registers all block assets so that they can be enqueued through Gutenberg in
* the corresponding context.
*
* Passes translations to JavaScript.
*/
function gutenify_register_block_post_list() {
// Register the block by passing the location of block.json to register_block_type.
register_block_type( __DIR__, array(
'render_callback' => 'gutenify_render_block_post_list',
) );
if ( function_exists( 'wp_set_script_translations' ) ) {
/**
* May be extended to wp_set_script_translations( 'my-handle', 'my-domain',
* plugin_dir_path( MY_PLUGIN ) . 'languages' ) ). For details see
* https://make.wordpress.org/core/2018/11/09/new-javascript-i18n-support-in-wordpress/
*/
wp_set_script_translations( 'gutenify-block-post-list', 'gutenify' );
}
}
add_action( 'init', 'gutenify_register_block_post_list' );