This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: List of Random Posts Widget | |
* Description: Displays random post titles with links. Number of posts can be set between 1 and 10. | |
* Version: 1.2 | |
* Author: Jeff Milner | |
* Author URI: https://jeffmilner.com | |
* Plugin URI: https://jeffmilner.com/index.php/2025/05/11/list-of-random-posts-widget/ | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Friend_FaceApp.swift | |
// Friend Face | |
// | |
// Created by Jeff Milner on 2025-04-11. | |
// | |
import SwiftUI | |
@main |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// User.swift | |
// Friend Face | |
// | |
// Created by Jeff Milner on 2025-04-11. | |
// | |
import Foundation | |
struct User: Codable, Identifiable { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// UserDetailView.swift | |
// Friend Face | |
// | |
// Created by Jeff Milner on 2025-04-11. | |
// | |
import SwiftUI | |
struct UserDetailView: View { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ContentView.swift | |
// FriendFace | |
// | |
// Created by Jeff Milner on 2025-04-11. | |
// | |
import SwiftUI | |
struct ContentView: View { |