prefix . 'friend_links'; $atts = shortcode_atts(array( 'random' => 'true' ), $atts); $order_by = ($atts['random'] === 'true') ? 'RAND()' : 'sort_order ASC'; $links = $wpdb->get_results("SELECT * FROM $table_name ORDER BY $order_by"); if (empty($links)) { return ''; } ob_start(); ?>