function autograf_last_tweet_box() {
$tweet = get_option('autograf_last_tweet');
if (!$tweet || empty($tweet['text'])) {
return '
Nema tweetova
';
}
$username = 'dragopilsel';
$link = "https://twitter.com/{$username}/status/" . $tweet['id'];
$time = !empty($tweet['time']) ? date('d.m.Y H:i', $tweet['time']) : '';
return '
🐦 Autograf X feed
' . esc_html($tweet['text']) . '
' . esc_html($time) . '
Pogledaj na X →
';
}
add_shortcode('last_tweet', 'autograf_last_tweet_box');