PluginProbe
Topic SEO Content Optimization Tool / 1.0.3
Topic SEO Content Optimization Tool v1.0.3
1.0.43 1.0.42 trunk 1.0.0 1.0.1 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.17 1.0.18 1.0.19 1.0.2 1.0.20 1.0.21 1.0.22 1.0.23 1.0.24 1.0.25 1.0.3 1.0.31 1.0.32 All 40 releases
topic / index.php

index.php in Topic SEO Content Optimization Tool 1.0.3, at index.php

22 lines 614 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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' );