# streamcast/2.3.4/inc/functions.php

StreamCast – bring live radio to your site with a sleek player, version 2.3.4. 9 lines.

- Page: https://pluginprobe.com/plugins/streamcast/2.3.4/code/inc/functions.php
- Raw: https://pluginprobe.com/plugins/streamcast/2.3.4/raw/inc/functions.php
- Modified: 2025-09-17T06:32:08+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/streamcast/2.3.4/code/inc/functions.php#L10-L20`.

```php
<?php

// Function To Get Meta Value
if (!function_exists('stp_get_meta')) {
    function stp_get_meta($id, $key, $default = null) {
        $value = get_post_meta($id, $key, true);
        return $value ?: $default;
    }
}
```
