HEX
Server: Apache/2.4.54 (Debian)
System: Linux f988254d8f22 6.8.0-87-generic #88~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue Oct 14 14:03:14 UTC 2 x86_64
User: (1000)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/kboard/pages/kboard_store_partners.php
<?php if(!defined('ABSPATH')) exit;?>
<div class="wrap">
	<div class="kboard-header-logo"></div>
	<h1 class="wp-heading-inline">KBoard : <?php echo __('Partners', 'kboard')?></h1>
	<a href="https://www.cosmosfarm.com" class="page-title-action" onclick="window.open(this.href);return false;"><?php echo __('Home', 'kboard')?></a>
	<a href="https://www.cosmosfarm.com/threads" class="page-title-action" onclick="window.open(this.href);return false;"><?php echo __('Community', 'kboard')?></a>
	<a href="https://www.cosmosfarm.com/support" class="page-title-action" onclick="window.open(this.href);return false;"><?php echo __('Support', 'kboard')?></a>
	<a href="https://blog.cosmosfarm.com" class="page-title-action" onclick="window.open(this.href);return false;"><?php echo __('Blog', 'kboard')?></a>
	
	<hr class="wp-header-end">
	
	<style>
	.card .title { line-height: 40px; }
	.card .title img { vertical-align: middle; border: 0; }
	.card .title a { color: black; text-decoration: none; }
	</style>
	
	<?php foreach($store_partners_list as $partner):?>
	<div class="card">
		<h2 class="title">
			<a href="<?php echo esc_url($partner->url)?>" target="_blank">
				<?php if($partner->logo_url):?><img src="<?php echo esc_url($partner->logo_url)?>" alt="" style="height:40px;"><?php endif?>
				<?php echo $partner->title?>
			</a>
		</h2>
		<?php
		echo wpautop($partner->description);
		?>
		<p><a class="button" href="<?php echo esc_url($partner->url)?>" target="<?php echo esc_attr($partner->target)?>">웹사이트로 이동</a></p>
	</div>
	<?php endforeach?>
</div>