| 1 |
<?php |
| 2 |
/** |
| 3 |
* Plugin Name: Topic |
| 4 |
* Plugin URI: https://www.usetopic.com/ |
| 5 |
* Description: Topic helps editors and agencies create content briefs in half the time. |
| 6 |
* Author: Topic |
| 7 |
* License: GPL v2 or later |
| 8 |
* License URI: https://www.gnu.org/licenses/gpl-2.0.html |
| 9 |
* Version: 1.0.3 |
| 10 |
*/ |
| 11 |
if( ! defined( 'ABSPATH') ) { |
| 12 |
exit; |
| 13 |
} |
| 14 |
|
| 15 |
function topic_enqueue_assets() { |
| 16 |
wp_enqueue_script( |
| 17 |
'topic-gutenberg-sidebar', |
| 18 |
plugins_url( 'build/index.js', __FILE__ ), |
| 19 |
array( 'wp-plugins', 'wp-edit-post', 'wp-i18n', 'wp-element' ) |
| 20 |
); |
| 21 |
} |
| 22 |
add_action( 'enqueue_block_editor_assets', 'topic_enqueue_assets' ); |