Skip to content

Commit 00c0e85

Browse files
committed
version 2.7.6 released
1 parent 30a9379 commit 00c0e85

File tree

5 files changed

+16
-5
lines changed

5 files changed

+16
-5
lines changed

assets/css/wpnextpreviouslink-admin.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

readme.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: codeboxr,manchumahara
33
Tags: next prev,navigation,
44
Requires at least: 5.3
55
Tested up to: 6.8
6-
Stable tag: 2.7.5
6+
Stable tag: 2.7.6
77
License: GPLv2 or later
88
License URI: http://www.gnu.org/licenses/gpl-2.0.html
99

@@ -67,6 +67,9 @@ e.g.
6767

6868

6969
== Changelog ==
70+
= 2.7.6 =
71+
* [updated] Style improve for setting page
72+
7073
= 2.7.5 =
7174
* [updated] Code revamped
7275
* [updated] Compatible with WordPress 6.8

templates/admin/support.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,14 @@ class="button outline primary"><?php esc_html_e( 'Global Settings', 'wpnextprevi
8787
</div>
8888
</div>
8989
<div class="content">
90+
<div class="cbx-backend-settings-row">
91+
<p>
92+
Version - 2.7.6
93+
</p>
94+
<ul>
95+
<li>[updated] Style improve for setting page</li>
96+
</ul>
97+
</div>
9098
<div class="cbx-backend-settings-row">
9199
<p>
92100
Version - 2.7.5

uninstall.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* The code that runs during plugin uninstall.
3535
*/
3636
function uninstall_wpnextpreviouslink() {
37-
require_once plugin_dir_path( __FILE__ ) . 'includes/class-wpnextpreviouslink-setting.php';
37+
require_once plugin_dir_path( __FILE__ ) . 'includes/WPNextPreviousLink_Settings_API.php';
3838
require_once plugin_dir_path( __FILE__ ) . 'includes/Helpers/WPNextPreviousLinkHelper.php';
3939
require_once plugin_dir_path( __FILE__ ) . 'includes/WPNextPreviousLinkUninstall.php';
4040

wpnextpreviouslink.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Plugin Name: CBX Next Previous Article
99
* Plugin URI: https://codeboxr.com/product/show-next-previous-article-for-wordpress
1010
* Description: WordPress Next Previous Article/Link
11-
* Version: 2.7.5
11+
* Version: 2.7.6
1212
* Author: Codeboxr Team
1313
* Author URI: https://codeboxr.com
1414
* License: GPL-2.0+
@@ -23,7 +23,7 @@
2323
die;
2424
}
2525

26-
defined( 'WPNEXTPREVIOUSLINK_VERSION' ) or define( 'WPNEXTPREVIOUSLINK_VERSION', '2.7.5' );
26+
defined( 'WPNEXTPREVIOUSLINK_VERSION' ) or define( 'WPNEXTPREVIOUSLINK_VERSION', '2.7.6' );
2727
defined( 'WPNEXTPREVIOUSLINK_PLUGIN_NAME' ) or define( 'WPNEXTPREVIOUSLINK_PLUGIN_NAME', 'wpnextpreviouslink' );
2828
defined( 'WPNEXTPREVIOUSLINK_ROOT_PATH' ) or define( 'WPNEXTPREVIOUSLINK_ROOT_PATH', plugin_dir_path( __FILE__ ) );
2929
defined( 'WPNEXTPREVIOUSLINK_ROOT_URL' ) or define( 'WPNEXTPREVIOUSLINK_ROOT_URL', plugin_dir_url( __FILE__ ) );

0 commit comments

Comments
 (0)