Adding Coach to Player List as is easier conditional number
-
Hi I have duplicated the player gallery into a sportspress folder in my theme and am going to add the coach, assistant coach, strength and conditioning coach. Now they won’t have numbers and I know it looks for an integer, is there a way to make it show an html
if it is empty?if ( intval( $number ) > 0 ) $limit = $number;
Now on the player-gallery-thumbnail.php it has
// Add player number to caption if available $player_number = get_post_meta( $id, 'sp_number', true ); if ( $player_number ) $caption = '<strong>' . $player_number . '</strong> ' . $caption;
So I gather if it is empty it won’t show but for styling purposes (reason why I am changing the template) I need it to have something if no number, hence the html non breaking space.
Thanks ??
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Adding Coach to Player List as is easier conditional number’ is closed to new replies.