demo-sites.php
1 year ago
get-started.php
2 years ago
upgrade-pro.php
1 year ago
website-starter.php
6 days ago
website-starter.php
21 lines
| 1 | <style> |
| 2 | #kubio-website-starter{ |
| 3 | background-image: url(<?php echo esc_url( KUBIO_ROOT_URL . '/static/admin-assets/bg-dark.png' ); ?>); |
| 4 | } |
| 5 | </style> |
| 6 | <div id="kubio-website-starter"></div> |
| 7 | <?php |
| 8 | |
| 9 | wp_enqueue_script( 'kubio-editor' ); |
| 10 | wp_add_inline_script( |
| 11 | 'kubio-admin-area', |
| 12 | sprintf( |
| 13 | 'wp.domReady( function() { kubio.adminArea.initSiteWizard( %s ); } );', |
| 14 | wp_json_encode( |
| 15 | array() |
| 16 | ) |
| 17 | ), |
| 18 | 'after' |
| 19 | ); |
| 20 | |
| 21 |