vtrotot / conseil-municipal-post-type
为WordPress主题定制的Conseil Municipal文章类型
1.1.1
2023-03-22 14:44 UTC
Requires
- php: >=7
- symfony/http-foundation: ^5.3
- timber/timber: ^1.18
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);