HEX
Server: nginx/1.18.0
System: Linux test-ipsremont 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
User: ips (1000)
PHP: 8.0.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //var/www/quadcode.com/src/type/post.ts
export interface IPost {
  id: number;
  imageData: {
    thumbnail: string;
    medium: string;
    mediumLarge: string;
    large: string;
  };
  date: string;
  date_gmt: string;
  guid: {
    rendered: string;
  };
  modified: string;
  modified_gmt: string;
  slug: string;
  status: string;
  type: string;
  link: string;
  title: {
    rendered: string;
  };
  content: {
    rendered: string;
    protected: boolean;
  };
  excerpt: {
    rendered: string;
    protected: boolean;
  };
  expertData: {
    avatar: {
      thumbnail: string;
      medium: string;
      mediumLarge: string;
      large: string;
    };
    company: string;
    description: string;
    linkedin: string;
    name: string;
    position: string;
    slug: string;
  } | null;
  author: number;
  authorData: {
    name: string;
    description: string;
    position: string;
    slug: string;
    totalPosts: number;
    avatar: {
      thumbnail: string;
      medium: string;
      mediumLarge: string;
      large: string;
    };
    linkedin: string;
  };
  featured_media: number;
  comment_status: string;
  ping_status: string;
  sticky: boolean;
  template: string;
  format: string;
  meta: {
    footnotes: string;
  };
  categories: number[];
  tags: [];
  tagsData: string[];
  views: string;
  acf: {
    views: string;
    faq?: {
      question: string;
      answer: string;
    }[];
  };
  readAlso: {
    title: string;
    slug: string;
    color: string | null;
    type: string;
  }[];
  estReadingTime: string;
  yoast_head: string;
  yoast_head_json: {
    title: string;
    robots: {
      index: string;
      follow: string;
      'max-snippet': string;
      'max-image-preview': string;
      'max-video-preview': string;
    };
    og_locale: string;
    og_type: string;
    og_title: string;
    og_description: string;
    og_url: string;
    og_site_name: string;
    article_published_time: string;
    article_modified_time: string;
    og_image: [
      {
        width: number;
        height: number;
        url: string;
        type: string;
      }
    ];
    author: string;
    twitter_card: string;
    twitter_misc: {
      'Written by': string;
      'Est. reading time': string;
    };
  };
}