at path:
ROOT
/
wp-content
/
themes
/
sinatra
/
inc
/
deprecated.php
run:
R
W
Run
admin
DIR
2025-12-13 10:18:32
R
W
Run
compatibility
DIR
2025-12-13 10:18:32
R
W
Run
core
DIR
2025-12-13 10:18:32
R
W
Run
customizer
DIR
2025-12-13 10:18:32
R
W
Run
utilities
DIR
2025-12-13 10:18:32
R
W
Run
breadcrumbs.php
40.94 KB
2024-10-16 22:06:05
R
W
Run
Delete
Rename
class-sinatra-dynamic-styles.php
72.71 KB
2024-10-16 22:06:05
R
W
Run
Delete
Rename
common.php
25.38 KB
2024-10-16 22:06:05
R
W
Run
Delete
Rename
deprecated.php
1.49 KB
2024-10-16 22:06:05
R
W
Run
Delete
Rename
helpers.php
41.13 KB
2024-10-16 22:06:05
R
W
Run
Delete
Rename
icon-functions.php
55.05 KB
2024-10-16 22:06:05
R
W
Run
Delete
Rename
index.php
168 By
2024-10-16 22:06:05
R
W
Run
Delete
Rename
template-parts.php
14.67 KB
2024-10-16 22:06:05
R
W
Run
Delete
Rename
template-tags.php
36.91 KB
2024-10-16 22:06:05
R
W
Run
Delete
Rename
widgets.php
3.44 KB
2024-10-16 22:06:05
R
W
Run
Delete
Rename
error_log
up
📄
deprecated.php
Save
<?php /** * Deprecated functions. * * @package Sinatra * @author Sinatra Team <hello@sinatrawp.com> * @since 1.2.0 */ /** * Do not allow direct script access. */ if ( ! defined( 'ABSPATH' ) ) { exit; } if ( ! function_exists( 'sinatra_get_meta_icon' ) ) { /** * Get icon for post entry meta. * * @deprecated 1.2.0 * @param string $slug Icon slug. * @param string $icon Icon markup. * @param int|WP_Post $post_id Post object or ID. */ function sinatra_get_meta_icon( $slug = '', $icon = '', $post_id = '' ) { if ( sinatra_display_notices() ) { trigger_error( 'Method sinatra_get_meta_icon is deprecated since Sinatra version 1.17. Use sinatra()->icons->get_meta_icon( $slug, $icon, $post_id ) instead.', E_USER_DEPRECATED ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_trigger_error } return sinatra()->icons->get_meta_icon( $slug, $icon, $post_id ); } } if ( ! function_exists( 'sinatra_get_svg' ) ) { /** * Return SVG markup. * * @deprecated 1.2.0 * @param array $args Icon SVG args. */ function sinatra_get_svg( $args = array() ) { if ( sinatra_display_notices() ) { trigger_error( 'Method sinatra_get_svg is deprecated since Sinatra version 1.17. Use sinatra()->icons->get_svg( $icon, $args ) instead.', E_USER_DEPRECATED ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_trigger_error } $icon = isset( $args['icon'] ) ? $args['icon'] : ''; return sinatra()->icons->get_svg( $icon, $args ); } }