PluginProbe
Tableberg – Simple Gutenberg Table Block / 1.1.5
Tableberg – Simple Gutenberg Table Block v1.1.5
1.1.5 1.1.4 1.1.3 1.1.2 1.1.1 1.1.0 1.0.5 1.0.4 1.0.3 1.0.2 1.0.1 trunk 0.0.2 0.2.1 0.3.2 0.3.3 0.4.1 0.5.0 0.5.1 0.5.2 0.5.3 0.5.4 0.5.5 0.5.6 0.5.7 All 42 releases
tableberg / src / dynamic-data / sources.ts

sources.ts in Tableberg – Simple Gutenberg Table Block 1.1.5, at src/dynamic-data/sources.ts

13 lines 605 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import { __ } from "@wordpress/i18n";
2
3 export const postFieldKeys = [
4 { key: "post_title", label: __("Title", "tableberg") },
5 { key: "post_excerpt", label: __("Excerpt", "tableberg") },
6 { key: "post_content", label: __("Content", "tableberg") },
7 { key: "post_date", label: __("Publish Date", "tableberg") },
8 { key: "post_modified", label: __("Modified Date", "tableberg") },
9 { key: "post_author", label: __("Author Name", "tableberg") },
10 { key: "permalink", label: __("Permalink", "tableberg") },
11 { key: "featured_image", label: __("Featured Image URL", "tableberg") },
12 ];
13