Merged in release/release-1.09 (pull request #10)

Release/release 1.09

* Install missing plugins 
* rs set to 1

* rebase pantheon for aws

* rebase pantheon for aws

* prod config change

* prod config change

* fix campaing issue

* revert


Approved-by: Jay Sharma
This commit is contained in:
Rachit Bhargava
2023-12-27 20:55:58 +00:00
committed by Jay Sharma
parent 779393381f
commit 22f10a9edd
2154 changed files with 22313 additions and 209875 deletions

View File

@@ -1,45 +0,0 @@
<?php
/*
Plugin Name: WP-PageNavi
Plugin URI: https://lesterchan.net/portfolio/programming/php/
Description: Adds a more advanced paging navigation to your WordPress blog
Version: 2.94.1
Author: Lester 'GaMerZ' Chan
Author URI: https://lesterchan.net
Text Domain: wp-pagenavi
*/
require_once __DIR__ . '/scb/load.php';
function _pagenavi_init() {
load_plugin_textdomain( 'wp-pagenavi' );
require_once __DIR__ . '/core.php';
$options = new scbOptions( 'pagenavi_options', __FILE__, array(
'pages_text' => __( 'Page %CURRENT_PAGE% of %TOTAL_PAGES%', 'wp-pagenavi' ),
'current_text' => '%PAGE_NUMBER%',
'page_text' => '%PAGE_NUMBER%',
'first_text' => __( '&laquo; First', 'wp-pagenavi' ),
'last_text' => __( 'Last &raquo;', 'wp-pagenavi' ),
'prev_text' => __( '&laquo;', 'wp-pagenavi' ),
'next_text' => __( '&raquo;', 'wp-pagenavi' ),
'dotleft_text' => __( '...', 'wp-pagenavi' ),
'dotright_text' => __( '...', 'wp-pagenavi' ),
'num_pages' => 5,
'num_larger_page_numbers' => 3,
'larger_page_numbers_multiple' => 10,
'always_show' => false,
'use_pagenavi_css' => true,
'style' => 1,
) );
PageNavi_Core::init( $options );
if ( is_admin() ) {
require_once __DIR__ . '/admin.php';
new PageNavi_Options_Page( __FILE__, $options );
}
}
scb_init( '_pagenavi_init' );