File "team-link.php"

Full Path: /home/londdqdw/public_html/06/wp-content/plugins/sportspress/templates/team-link.php
File size: 718 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * Team Link
 *
 * @author      ThemeBoy
 * @package     SportsPress/Templates
 * @version     1.4
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}
if ( get_option( 'sportspress_team_show_link', 'yes' ) === 'no' ) {
	return;
}

if ( ! isset( $id ) ) {
	$id = get_the_ID();
}

$url = get_post_meta( $id, 'sp_url', true );

if ( empty( $url ) ) {
	return false;
}
?>
<form action="<?php echo esc_url( $url ); ?>"
						 <?php
							if ( get_option( 'sportspress_team_site_target_blank', 'no' ) == 'yes' ) {
								?>
	 target="_blank"<?php } ?>>
	<input type="submit" class="button sp-button sp-team-button" value="<?php esc_attr_e( 'Visit Site', 'sportspress' ); ?>">
</form>
<br>