vtrotot/conseil-municipal-post-type

为WordPress主题定制的Conseil Municipal文章类型

1.1.1 2023-03-22 14:44 UTC

This package is auto-updated.

Last update: 2024-09-22 18:02:11 UTC


README

ConseilMunicipalPostType是一个包,允许向WordPress主题添加自定义文章类型vt_cm
此自定义文章类型添加了六个元数据:一个日程表(名称和PDF文件链接)、一个会议纪要(名称和PDF文件链接)和一个会议音频记录(名称和mp3文件链接)。

VincentTrotot\ConseilMunicipalPostType配置自定义文章类型,而类VincentTrotot\ConseilMunicipal\ConseilMunicipal是一个Post的包装器(该类继承自类Timber\TimberPost)。

安装

composer require vtrotot/conseil-municipal-post-type

使用

您的主题必须实例化类ConseilMunicipalPostType

new VincentTrotot\ConseilMunicipal\ConseilMunicipalPostType();

然后您可以获取ConseilMunicipal类型的文章

$post = new VincentTrotot\ConseilMunicipal\ConseilMunicipal();

或通过以下方式获取多个文章:

$args = [
    'post_type' => 'vt_cm',
    ...
];
$posts = new Timber\TimberRequest($args, VincentTrotot\ConseilMunicipal\ConseilMunicipal::class);