Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Plugin: update header info in preparation for directory release. #956

Merged
merged 1 commit into from
Jun 2, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions index.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
<?php
/**
* Plugin Name: Gutenberg
* Plugin URI: https://wordpress.github.io/gutenberg/
* Description: Prototyping since 1440. Development plugin for the editor focus in core.
* Plugin URI: https://github.com/WordPress/gutenberg
* Description: Prototyping since 1440. This is the development plugin for the new block editor in core. <strong>Meant for development, do not run on real sites.</strong>
* Version: 0.1.0
* Author: Gutenberg Team
*
* @package gutenberg
*/
Expand All @@ -27,7 +28,6 @@ function gutenberg_menu() {
}
add_action( 'admin_menu', 'gutenberg_menu' );


$wp_registered_blocks = array();

/**
Expand Down Expand Up @@ -537,10 +537,7 @@ function gutenberg_scripts_and_styles( $hook ) {
// Initialize the editor.
wp_add_inline_script( 'wp-editor', 'wp.editor.createEditorInstance( \'editor\', _wpGutenbergPost );' );

/**
* Styles
*/

// Adding styles.
wp_enqueue_style(
'wp-editor-font',
'https://fonts.googleapis.com/css?family=Noto+Serif:400,400i,700,700i'
Expand Down