%PDF- %PDF-
Direktori : /var/www/maraton.eco-n-tech.co.uk/wp-content/themes/maraton/blocks/ImageAndText/ |
Current File : /var/www/maraton.eco-n-tech.co.uk/wp-content/themes/maraton/blocks/ImageAndText/index.php |
<?php acf_register_block( array( 'name' => 'image_n_text', 'title' => __( 'Image and Text', 'maraton' ), 'description' => __( 'Image with text block.', 'maraton' ), 'render_callback' => 'image_n_text_render_callback', 'category' => 'maraton-blocks', 'icon' => 'editor-quote', 'keywords' => array( 'image', 'block', 'text', 'content'), ) ); function image_n_text_render_callback( $block, $content = '', $is_preview = false ) { $context = Timber::context(); // Store block values. $context['block'] = $block; // Store field values. $context['fields'] = get_fields(); // Store $is_preview value. $context['is_preview'] = $is_preview; // build style string // if ($context['fields']['settings']['background_color']) { // $context['block']['style'] = 'background-color: ' . $context['fields']['settings']['background_color'] . ';'; // } // } // Render the block. Timber::render( 'render-template.twig', $context ); } ?>