Changeset 3438915
- Timestamp:
- 01/13/2026 06:30:10 PM (3 months ago)
- Location:
- rank-authority
- Files:
-
- 6 added
- 2 edited
-
tags/1.0.2 (added)
-
tags/1.0.2/assets (added)
-
tags/1.0.2/assets/icon.svg (added)
-
tags/1.0.2/rank-authority.php (added)
-
tags/1.0.2/readme.txt (added)
-
tags/1.0.2/uninstall.php (added)
-
trunk/rank-authority.php (modified) (5 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rank-authority/trunk/rank-authority.php
r3438893 r3438915 4 4 * Plugin URI: https://rankauthority.com/plugins/rankauthority 5 5 * Description: Secure API connector to publish posts / overwrite posts from the RA Dashboard to WordPress. 6 * Version: 1.0. 16 * Version: 1.0.2 7 7 * Author: Rank Authority 8 8 * Author URI: https://rankauthority.com … … 56 56 /** Admin menu */ 57 57 public function admin_menu() { 58 // Get SVG icon URL59 $icon_url = plugin_dir_url(__FILE__) . 'assets/icon.svg';60 61 58 add_menu_page( 62 59 'Rank Authority', … … 65 62 'rank-authority', 66 63 [$this, 'settings_page'], 67 $icon_url 64 'dashicons-chart-line', 65 30 68 66 ); 69 67 } … … 74 72 ?> 75 73 <style type="text/css"> 76 #toplevel_page_rank-authority .wp-menu-image img {77 width: 20px;78 height: 20px;79 padding: 0;80 }81 74 #toplevel_page_rank-authority .wp-menu-image { 82 75 background-image: url('<?php echo esc_url($icon_url); ?>') !important; … … 84 77 background-repeat: no-repeat; 85 78 background-position: center; 79 width: 20px; 80 height: 20px; 86 81 } 87 82 #toplevel_page_rank-authority .wp-menu-image:before { 88 display: none; 83 display: none !important; 84 } 85 #toplevel_page_rank-authority .wp-menu-image img { 86 display: none !important; 89 87 } 90 88 </style> -
rank-authority/trunk/readme.txt
r3438909 r3438915 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 1.0. 17 Stable tag: 1.0.2 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 136 136 == Changelog == 137 137 138 = 1.0.2 = 139 * Fixed custom SVG icon display issue in WordPress admin menu 140 * Improved menu icon CSS with better fallback support 141 * Enhanced icon rendering reliability 142 138 143 = 1.0.1 = 139 144 * Added custom SVG icon for admin menu … … 150 155 151 156 == Upgrade Notice == 157 158 = 1.0.2 = 159 Fixed admin menu icon display issue for better compatibility. 152 160 153 161 = 1.0.1 =
Note: See TracChangeset
for help on using the changeset viewer.