Skip to content

Commit

Permalink
Merge pull request #4 from Automattic/feature/add-plugin-file
Browse files Browse the repository at this point in the history
Adds a plugin.php file with some basic boilerplate
  • Loading branch information
ryanwelcher authored Feb 6, 2025
2 parents 8e95a1d + 3c28e28 commit e7c7501
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions plugin.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php
/**
* Plugin Name: Publisher Name custom plugin
* Plugin URI: https://newspack.com
* Description: One plugin to rule them all.
* Version: 1.0.0
* Author: Publisher Name
* Author URI: Publisher Website
* Text Domain: publisher-name
*
* For more information on WordPress plugin headers, see the following page:
* https://developer.wordpress.org/plugins/plugin-basics/header-requirements/
*
* @package PublisherName
*/

// Ensure that everything is namespaced.
namespace PublisherName;

// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;

0 comments on commit e7c7501

Please sign in to comment.