Changeset 1581493
- Timestamp:
- 01/24/2017 10:15:16 PM (9 years ago)
- Location:
- shortcuts-for-front-page-and-posts-page
- Files:
-
- 4 added
- 2 edited
- 1 copied
-
tags/1.0.0 (copied) (copied from shortcuts-for-front-page-and-posts-page/trunk)
-
trunk/languages (added)
-
trunk/languages/shortcuts-front-page-posts-page-fr_FR.mo (added)
-
trunk/languages/shortcuts-front-page-posts-page-fr_FR.po (added)
-
trunk/languages/shortcuts-front-page-posts-page.pot (added)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/shortcuts-front-page-posts-page.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shortcuts-for-front-page-and-posts-page/trunk/readme.txt
r1581207 r1581493 5 5 Requires at least: 4.6 6 6 Tested up to: 4.7.1 7 Stable tag: 1.0. 07 Stable tag: 1.0.1 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 22 22 This section describes how to install the plugin and get it working. 23 23 24 e.g.25 26 24 1. Upload the plugin files to the `/wp-content/plugins/shortcuts-front-page-posts-page` directory, or install the plugin through the WordPress plugins screen directly. 27 1. Activate the plugin through the 'Plugins' screen in WordPress28 1. Shortcuts are added automatically!25 2. Activate the plugin through the 'Plugins' screen in WordPress 26 3. Shortcuts are added automatically! 29 27 30 28 == Frequently Asked Questions == … … 40 38 == Changelog == 41 39 42 = 1.0 = 40 = 1.0.1 = 41 * Add screenshot and languages folder 42 43 = 1.0.0 = 43 44 * First release of Shortcuts for Front Page and Posts Page plugin. 44 45 -
shortcuts-for-front-page-and-posts-page/trunk/shortcuts-front-page-posts-page.php
r1581207 r1581493 2 2 /** 3 3 * Plugin Name: Shortcuts for Front Page and Posts Page 4 * Version: 1.0. 04 * Version: 1.0.1 5 5 * Plugin URI: https://romaindorr.fr 6 6 * Description: Very simple WordPress plugin to add in admin page screen 2 shortcuts for Front Page and Posts Page … … 13 13 */ 14 14 15 16 15 defined( 'ABSPATH' ) or die( 'No direct load !' ); 17 18 16 19 17 load_plugin_textdomain( 'shortcuts-front-page-posts-page', false, basename( dirname( __FILE__ ) ) . '/languages' ); … … 22 20 define( 'SHORTCUTS_FRONT_PAGE_POSTS_PAGE_DIR', plugin_dir_path( __FILE__ ) ); 23 21 define( 'SHORTCUTS_FRONT_PAGE_POSTS_PAGE_URL', plugin_dir_url( __FILE__ ) ); 24 define( 'SHORTCUTS_FRONT_PAGE_POSTS_PAGE_VERSION', '1.0. 0' );22 define( 'SHORTCUTS_FRONT_PAGE_POSTS_PAGE_VERSION', '1.0.1' ); 25 23 26 24 add_action( 'plugins_loaded', 'shortcuts_front_page_posts_page_init' ); … … 99 97 } 100 98 101 $edit_links = apply_filters( 'shortcuts-front-page-posts-page-edit-links', $edit_links ); 102 103 return $edit_links; 99 return apply_filters( 'shortcuts-front-page-posts-page-edit-links', $edit_links ); 104 100 } 105 101 }
Note: See TracChangeset
for help on using the changeset viewer.