简单的方法是在函数中创建一个短代码。php文件,然后在古腾堡使用它。
古腾堡有一个内置块来添加短代码。
基本上,您将向函数中添加以下代码。php文件,
function get_forum_post_information( $atts ) {
// The PHP Code that you want to execute to get the Title and Description.
return your_stuff;
}
add_shortcode( "get_forum_post_information", "get_forum_post_information" );
创建完短代码后,只需转到Gutenberg,单击+按钮添加新块,搜索短代码,然后选择它。
古腾堡将加入一个可以用来运行该短代码的块。然后只需在该块中输入短代码,如下所示,
[get_forum_post_information]
注意:如果愿意,还可以通过快捷码传递函数参数,然后通过函数中的$atts数组访问它们。短代码总是返回要回显的内容。
了解更多信息Shortcodes on the WordPress Codex
了解Gutenberg Shortcode Block