Use team website links and output template

This commit is contained in:
Brian Miyaji
2014-06-14 18:10:09 +10:00
parent 208089d4db
commit 6262bda6e8
5 changed files with 59 additions and 3 deletions

23
templates/team-link.php Normal file
View File

@@ -0,0 +1,23 @@
<?php
/**
* Team Link
*
* @author ThemeBoy
* @package SportsPress/Templates
* @version 1.0.5
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
if ( ! isset( $id ) )
$id = get_the_ID();
$url = get_post_meta( $id, 'sp_url', true );
if ( empty( $url ) )
return false;
?>
<form action="<?php echo $url; ?>">
<input type="submit" class="button sp-button sp-team-button" value="<?php _e( 'Visit Site', 'sportspress' ); ?>">
</form>
<br>