我通过创建一个模板页面并通过ftp上传来设置类似的内容。使用高级自定义字段编码的要点在编辑器中使用了以下内容:
<?php /* Template Name: CustomPageT1 */ ?>
<?php get_header(); ?>
<?php
$posts = get_posts(array(
\'posts_per_page\' => -1,
\'post_type\' => \'post\',
\'category_name\' => \'all-properties\'
));
if( $posts ): ?>
<?php foreach( $posts as $post ):
setup_postdata( $post );
?>
<?php the_post_thumbnail( \'small\' ); ?><br>
<b><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></b><br>
<?php the_field(\'short_description\'); ?><br>
<?php endforeach; ?>
<?php wp_reset_postdata(); ?>
让我知道这是否是您正在寻找的,以及我是否可以帮助您了解更多信息。:)