1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?php defined( 'ABSPATH' ) || exit; ?> <style> #wpcontent #wpbody .notice, .error, .updated { display: none; } #wpfooter { display: none; } </style> <div style="display: none;"> <?php wp_editor( '', 'yaymail-wp-editor-placeholder', [ 'quicktags' => false, 'media_buttons' => true, 'tinymce' => true, ] ); ?> </div> <div id="yaymail-main-pages"> <div class="yaymail-pre-loading" style="width: 20px; height: 20px; background: url(images/spinner-2x.gif); background-size: contain; background-repeat: no-repeat; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);"> </div> </div>
|