-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebar.php
41 lines (34 loc) · 1.13 KB
/
sidebar.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
/**
* Sidebar
*
* @package Plugin_Name
* @subpackage Admin/Footer
*/
?>
<div class="postbox-container">
<div id="qlinksdiv" class="postbox meta-box-sortables">
<h2 class='hndle metabox-holder'><span><?php esc_html_e( 'Quick links', 'plugin-name' ); ?></span></h2>
<div class="inside">
<div id="quick-links">
<ul>
<li>
<a href="https://webberzone.com/plugins/plugin-name/"><?php esc_html_e( 'Plugin_Name homepage', 'plugin-name' ); ?></a>
</li>
<li>
<a href="https://wordpress.org/plugins/plugin-name/faq/"><?php esc_html_e( 'FAQ', 'plugin-name' ); ?></a>
</li>
<li>
<a href="https://wordpress.org/support/plugin/plugin-name"><?php esc_html_e( 'Support', 'plugin-name' ); ?></a>
</li>
<li>
<a href="https://wordpress.org/support/view/plugin-reviews/plugin-name"><?php esc_html_e( 'Reviews', 'plugin-name' ); ?></a>
</li>
<li>
<a href="https://github.com/WebberZone/Settings_API"><?php esc_html_e( 'Settings_API Github repository', 'plugin-name' ); ?></a>
</li>
</ul>
</div>
</div><!-- /.inside -->
</div><!-- /.postbox -->
</div>