这是我的类什么扩展木材网站类。
<?php
class EngineACF extends Timber\Site {
public function __construct() {
parent::__construct();
add_action( 'admin_head' , [$this, 'adminStyle']);
add_action( 'acf/init', [$this, 'acfBlocks'] );
}
/**
* Define Gutenberg Blocks
* @version 1.0
*/
public function acfBlocks()
{
if (!function_exists( 'acf_register_block' )) {
return;
}
$blocks = [
[
'name' => 'homepage-slider',
'title' => 'Homepage Slider'
]
];
foreach ($blocks as $perKey => $perBlock) {
acf_register_block(
[
'name' => data_get($perBlock, 'name'),
'title' => data_get($perBlock, 'title'),
'description' => data_get($perBlock, 'title'),
'render_callback' => [$this, 'renderAcfCallback'],
'category' => 'formatting',
'icon' => 'format-aside',
'keywords' => [str_replace(' ', ',', data_get($perBlock, 'name'))],
]
);
}
}
/**
* Render Dynamic Gutenberg block template
* @version 1.0
*/
public function renderAcfCallback( $block, $content = '', $is_preview = false ) {
$blockName = data_get($block, 'name');
$blockName = str_replace('acf/', '', $blockName);
$context = Timber::context();
$context['block'] = $block;
$context['fields'] = get_fields();
$context['is_preview'] = $is_preview;
Timber::render( 'blocks/'.$blockName.'-block.twig', $context );
}
}
我也有,blocks/homepage-slider-block.twig文件。在管理面板中,使用 gutenberg 编辑器一切都很完美。但是在前端,帖子内容不能正常工作/渲染。
有什么帮助吗?谢谢。
输出如下:
2条答案
按热度按时间9lowa7mx1#
好的。我刚发现问题所在。我使用的是twig中的
post.post_content
变量。显然,这不是包含最终内容的变量。
供将来有类似问题的人参考:使用变量
{{post.content}}
。ecfdbz9o2#
我在调用
$context['post'] = get_post();
时遇到了类似的行为-我猜这是不正确的方法。应该调用$context['post'] = new Timber\Post();
。然后如您所述,使用{{post.content}}
,它还消除了所有肮脏的wp:paragraph等注解。