如何制作一个下拉列表控件来获取自定义帖子类型的名称?
如何制作一个下拉列表控件来获取自定义帖子类型的名称?在我的项目中,我想选择一个帖子类型名称并在我的自定义古腾堡块的下拉选择器中获取它!..我该怎么做?
How can I make a dropdown list control that fetches names of custom posts types? In my project I want to select a post type name and fetch it in drop down selector in my custom Gutenberg Block!.. How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果为古腾堡块的
edit()
函数创建下拉列表(选择),则可以通过useSelect() 使用
。一个例子是 下拉菜单在查询块中选择帖子类型。getPostTypes()
检索已注册的帖子类型JavaScript 中的下面是一个简化的示例,它使用
显示所有可查看帖子类型的列表,并允许将选定的帖子类型保存为块属性。block.json
edit.js
使用 JavaScript 作为编辑器而不是回退到 PHP 的优点是,您可以使用
< 等古腾堡控件来保持 UI 一致;选择控制/>
。设置侧边栏可能是放置
的好地方,具体取决于您的目标。If creating a dropdown list (select) for the
edit()
function of a Gutenberg block, registered post types can be retrieved withgetPostTypes()
viauseSelect()
in JavaScript. An example of this is the dropdown in the Query Block to select a Post Type.Below is a simplified example that uses a
<SelectControl/>
to display a list of all viewable post types, and enables a selected postType to be saved the blocks attributes.block.json
edit.js
The advantage of using JavaScript for the Editor instead of falling back to PHP is you can keep the UI consistent by using Gutenberg controls like
<SelectControl/>
.The Settings Sidebar may be a good place to put your
<SelectControl/>
depending on your goal.如果您想传递变量(在本例中为:CPT)来阻止脚本,您可以使用 wp_localize_scripts :
If you want to pass variables ( in this example : CPT ) to block scripts , you can use wp_localize_scripts :