-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbanner.php
More file actions
30 lines (28 loc) · 1003 Bytes
/
Copy pathbanner.php
File metadata and controls
30 lines (28 loc) · 1003 Bytes
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
<?php
/**
* View แบนเนอร์ของปลั๊กอิน
* ใช้สำหรับแสดงส่วนหัวในหน้า admin ต่างๆ
*
* @package JGDrive Gallery
*/
// ป้องกันการเข้าถึงไฟล์โดยตรง
if (!defined('ABSPATH')) {
exit;
}
?>
<div class="jrssfeed-banner">
<div class="jrssfeed-banner-logo">
<img src="<?php echo plugin_dir_url(__FILE__) . 'icon.png'; ?>" alt="jPlugin-logo" width="64" height="64">
</div>
<div class="jrssfeed-banner-banner-content">
<h1>jRSSFeed</h1>
<p class="jrssfeed-banner-description">
Plugin สำหรับดึงข้อมูลบทความจากเว็บบล็อกต่างๆ มาแสดงบน WordPress
</p>
</div>
<div class="jrssfeed-banner-version">
<span class="jrssfeed-banner-version">
version 1.0.0
</span>
</div>
</div>