| | |
| | | <?php |
| | | |
| | | function altr_render_core_site_logo(array $block, string $content):string |
| | | function altr_prerender_core_site_logo(array $block, ?string $content):?string |
| | | { |
| | | $open = $close = ''; |
| | | |
| | |
| | | } |
| | | |
| | | |
| | | function altr_render_core_post_excerpt(array $block, string $content) |
| | | function altr_prerender_core_post_excerpt(array $block, ?string $content):?string |
| | | { |
| | | |
| | | global $post; |
| | |
| | | return '<div class="excerpt">'.apply_filters('the_content', $excerpt).'</div>'; |
| | | } |
| | | |
| | | function altr_render_core_media_text(array $block, string $content):string |
| | | function altr_prerender_core_media_text(array $block, ?string $content, ?WP_Block $parent):?string |
| | | { |
| | | if (!array_key_exists('attrs', $block) || !array_key_exists('className', $block['attrs']) || $block['attrs']['className'] !== 'ltr-logo'){ |
| | | return JVB()->blocks()->render_core_media_text($block, $content); |
| | | return JVB()->blocks()->prerender_core_media_text($block, $content, $parent); |
| | | } |
| | | |
| | | $imgs = [ |