# tableberg/1.1.5/src/dynamic-data/sources.ts

Tableberg – Simple Gutenberg Table Block, version 1.1.5. 13 lines.

- Page: https://pluginprobe.com/plugins/tableberg/1.1.5/code/src/dynamic-data/sources.ts
- Raw: https://pluginprobe.com/plugins/tableberg/1.1.5/raw/src/dynamic-data/sources.ts
- Modified: 2026-09-16T03:30:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/tableberg/1.1.5/code/src/dynamic-data/sources.ts#L10-L20`.

```typescript
import { __ } from "@wordpress/i18n";

export const postFieldKeys = [
    { key: "post_title", label: __("Title", "tableberg") },
    { key: "post_excerpt", label: __("Excerpt", "tableberg") },
    { key: "post_content", label: __("Content", "tableberg") },
    { key: "post_date", label: __("Publish Date", "tableberg") },
    { key: "post_modified", label: __("Modified Date", "tableberg") },
    { key: "post_author", label: __("Author Name", "tableberg") },
    { key: "permalink", label: __("Permalink", "tableberg") },
    { key: "featured_image", label: __("Featured Image URL", "tableberg") },
];

```
