| @@ -9,15 +9,18 @@ | ||
| 9 | 9 | |
| 10 | 10 | class Fallback extends AbstractCompatibilityBase { |
| 11 | 11 | |
| 12 | 12 | public function render_header() { |
| 13 | + // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped | |
| 13 | 14 | echo $this->get_rendered_block_content_by_id( $this->get_settings( 'header' ) ); |
| 14 | 15 | } |
| 15 | 16 | |
| 16 | 17 | public function render_footer() { |
| 18 | + // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped | |
| 17 | 19 | echo $this->get_rendered_block_content_by_id( $this->get_settings( 'footer' ) ); |
| 18 | 20 | } |
| 19 | 21 | |
| 20 | 22 | public function render_before_footer() { |
| 23 | + // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped | |
| 21 | 24 | echo $this->get_rendered_block_content_by_id( $this->get_settings( 'before-footer' ) ); |
| 22 | 25 | } |
| 23 | 26 | } |