Changeset 1325067
- Timestamp:
- 01/10/2016 02:31:27 AM (10 years ago)
- Location:
- wp-sitemanager/trunk
- Files:
-
- 3 edited
-
modules/theme_switcher.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
-
wp-sitemanager.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-sitemanager/trunk/modules/theme_switcher.php
r1189382 r1325067 722 722 function __construct( $args = array() ) { 723 723 $args = wp_parse_args( $args, array( 724 'plural' => '',724 'plural' => '', 725 725 'singular' => '', 726 'ajax' => false 726 'ajax' => false, 727 'screen' => null, 727 728 ) ); 728 729 729 730 $screen = get_current_screen(); 731 $this->screen = $screen; 730 732 731 733 if ( ! $args['plural'] ) { … … 734 736 $this->_args = $args; 735 737 $this->_column_headers = array( 736 $this->get_columns( ),738 $this->get_columns( $screen ), 737 739 array(), 738 740 array() … … 835 837 function __construct( $args = array() ) { 836 838 $args = wp_parse_args( $args, array( 837 'plural' => '',839 'plural' => '', 838 840 'singular' => '', 839 'ajax' => false 841 'ajax' => false, 842 'screen' => null, 840 843 ) ); 841 844 842 845 $screen = get_current_screen(); 846 $this->screen = $screen; 843 847 844 848 if ( ! $args['plural'] ) { -
wp-sitemanager/trunk/readme.txt
r1318368 r1325067 2 2 Contributors: primestrategy, jim912, Kengyu Nakamura 3 3 Tags: cms, mobile, sitemap, pager, page navi, breadcrumb 4 Requires at least: 3.55 Tested up to: 4.4 6 Stable tag: 1.1. 74 Requires at least: 4.2 5 Tested up to: 4.4.1 6 Stable tag: 1.1.8 7 7 8 8 WP SiteManager is an integrated package comprising of necessary functions for using WordPress as a CMS. … … 34 34 35 35 == Changelog == 36 = 1.1.8 = 37 * fix : notice error on the Multi device page. 38 36 39 = 1.1.7 = 37 40 * fix : Posts page link displayed on bread crumb when 404 page. -
wp-sitemanager/trunk/wp-sitemanager.php
r1318368 r1325067 5 5 Description: WP SiteManager is an integrated package comprising of necessary functions for using WordPress as a CMS. 6 6 Author: Prime Strategy Co.,LTD. 7 Version: 1.1. 77 Version: 1.1.8 8 8 Author URI: http://www.prime-strategy.co.jp/ 9 9 License: GPLv2 or later
Note: See TracChangeset
for help on using the changeset viewer.