We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit f182eb4Copy full SHA for f182eb4
functions.php
@@ -0,0 +1,8 @@
1
+<?php
2
+
3
+// Exit if accessed directly.
4
+if ( ! defined( 'ABSPATH' ) ) {
5
+ exit;
6
+}
7
8
+// Your awesome code here.
plugin-name.php
@@ -0,0 +1,20 @@
+/**
+ * Bootstrap file
+ *
+ * Plugin Name: Plugin Name
+ * Description: The plugin adds information about the games to the site posts.
+ * Version: {VERSION}
+ * Author: {AUTHOR}
9
+ * Author URI: {AUTHOR_URL}
10
+ * License: GPLv2 or later
11
+ * Text Domain: plugin-name
12
13
+ * @package PluginName
14
+ */
15
16
17
18
19
20
+require_once plugin_dir_path( __FILE__ ) . 'functions.php';
0 commit comments