PluginProbe
StreamCast – bring live radio to your site with a sleek player / 2.4.2
StreamCast – bring live radio to your site with a sleek player v2.4.2
2.4.5 2.4.4 trunk 1.0 1.1 2.0.0 2.1.10 2.1.2 2.1.4 2.1.5 2.1.8 2.2.1 2.2.3 2.2.4 2.2.5 2.3.0 2.3.1 2.3.2 2.3.3 2.3.4 2.3.5 2.3.6 2.3.7 2.3.8 2.3.9 All 29 releases
streamcast / inc / class-streamcast-functions.php

class-streamcast-functions.php in StreamCast – bring live radio to your site with a sleek player 2.4.2, at inc/class-streamcast-functions.php

19 lines 492 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace StreamCast;
3
4 if ( ! defined( 'ABSPATH' ) ) exit;
5
6 class Functions {
7 public static function get_meta( $id, $key, $default = null ) {
8 $value = get_post_meta( $id, $key, true );
9 return $value ?: $default;
10 }
11 }
12
13 // Global wrapper for convenience and backward compatibility
14 if ( ! function_exists( 'streamcast_get_meta' ) ) {
15 function streamcast_get_meta( $id, $key, $default = null ) {
16 return \StreamCast\Functions::get_meta( $id, $key, $default );
17 }
18 }
19