Skip to content
This repository was archived by the owner on Jan 21, 2026. It is now read-only.

Commit 4bd2a8a

Browse files
committed
fix: added additional links to impex plugin entry in plugins.php
1 parent e02c44d commit 4bd2a8a

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

plugins/cm4all-wp-impex/plugin.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,24 @@
5858
\add_filter('pre_site_transient_update_core', '\__return_null');
5959
}
6060

61+
\add_filter('plugin_action_links_' . plugin_basename(__FILE__), function ($links) {
62+
array_unshift(
63+
$links,
64+
sprintf(
65+
'<a href="%s">%s</a>',
66+
\admin_url('tools.php?page=cm4all_wp_impex_wp_admin_dashboard'),
67+
\__('Settings', 'cm4all-wp-impex')
68+
),
69+
sprintf(
70+
'<a target="_blank" href="%s">%s</a>',
71+
'https://github.com/IONOS-WordPress/cm4all-wp-impex/issues',
72+
\__('Support', 'cm4all-wp-impex')
73+
),
74+
);
75+
76+
return $links;
77+
});
78+
6179
\add_action(
6280
'plugins_loaded',
6381
function () {

0 commit comments

Comments
 (0)