New to Translating WordPress? Read through our Translator Handbook to get started. Hide
Prio | Original string | Translation | — |
---|---|---|---|
↑ | A must have tool for creating custom fields, custom post types and taxonomies, fast and without any programming knowledge. | You have to log in to add a translation. | Details |
Original untranslated
A must have tool for creating custom fields, custom post types and taxonomies, fast and without any programming knowledge.
You have to log in to edit this translation. Meta |
|||
<strong>WCK Custom Fields Creator</strong> offers an UI for setting up custom meta boxes with custom fields for your posts, pages or custom post types. Uses standard custom fields to store data. You can <a href="https://www.cozmoslabs.com/25322-show-custom-fields-wordpress/">show custom fields</a> using code or with the Swift Templates module. | You have to log in to add a translation. | Details | |
Original untranslated
<strong>WCK Custom Fields Creator</strong> offers an UI for setting up custom meta boxes with custom fields for your posts, pages or custom post types. Uses standard custom fields to store data. You can <a href="https://www.cozmoslabs.com/25322-show-custom-fields-wordpress/">show custom fields</a> using code or with the Swift Templates module.
CommentFound in description paragraph. You have to log in to edit this translation. Meta |
|||
<strong><a href="http://www.cozmoslabs.com/wck-custom-fields-custom-post-types-plugin/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=WCKFree">WordPress Creation Kit</a></strong> consists of three tools that can help you create and maintain custom post types, custom taxonomies and most importantly, custom fields and metaboxes for your posts, pages or CPT's. | You have to log in to add a translation. | Details | |
Original untranslated
<strong><a href="http://www.cozmoslabs.com/wck-custom-fields-custom-post-types-plugin/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=WCKFree">WordPress Creation Kit</a></strong> consists of three tools that can help you create and maintain custom post types, custom taxonomies and most importantly, custom fields and metaboxes for your posts, pages or CPT's.
CommentFound in description paragraph. You have to log in to edit this translation. Meta |
|||
<a href="http://www.cozmoslabs.com/wck-custom-fields-custom-post-types-plugin/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=WCKFree">See complete list of PRO features</a> | You have to log in to add a translation. | Details | |
Original untranslated
<a href="http://www.cozmoslabs.com/wck-custom-fields-custom-post-types-plugin/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=WCKFree">See complete list of PRO features</a>
CommentFound in description paragraph. You have to log in to edit this translation. Meta |
|||
The <a href="http://www.cozmoslabs.com/wck-custom-fields-custom-post-types-plugin/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=WCKFree">WCK PRO version</a> offers: | You have to log in to add a translation. | Details | |
Original untranslated
The <a href="http://www.cozmoslabs.com/wck-custom-fields-custom-post-types-plugin/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=WCKFree">WCK PRO version</a> offers:
CommentFound in description paragraph. You have to log in to edit this translation. Meta |
|||
Custom fields types: WYSIWYG editor, upload, text, textarea, select, checkbox, radio, number, HTML, time-picker, phone, currency select, color picker, heading | You have to log in to add a translation. | Details | |
Original untranslated
Custom fields types: WYSIWYG editor, upload, text, textarea, select, checkbox, radio, number, HTML, time-picker, phone, currency select, color picker, heading
CommentFound in description list item. You have to log in to edit this translation. Meta |
|||
Let's consider we have a meta box with the following arguments:↵ - Meta name: books↵ - Post Type: post↵ And we also have two fields defined:↵ - A text custom field with the Field Title: Book name↵ - And another text custom field with the Field Title: Author name | You have to log in to add a translation. | Details | |
Original untranslated
Let's consider we have a meta box with the following arguments:↵
- Meta name: books↵
- Post Type: post↵
And we also have two fields defined:↵
- A text custom field with the Field Title: Book name↵
- And another text custom field with the Field Title: Author name
CommentFound in faq paragraph. You have to log in to edit this translation. Meta |
|||
Creating a taxonomy generally automatically creates a special query variable using WP_Query class, which we can use to retrieve posts based on. For example, to pull a list of posts that have 'Bob' as a 'person' taxomony in them, we will use: | You have to log in to add a translation. | Details | |
Original untranslated
Creating a taxonomy generally automatically creates a special query variable using WP_Query class, which we can use to retrieve posts based on. For example, to pull a list of posts that have 'Bob' as a 'person' taxomony in them, we will use:
CommentFound in faq paragraph. You have to log in to edit this translation. Meta |
|||
That displays the list of People attached to each post. | You have to log in to add a translation. | Details | |
Original untranslated
That displays the list of People attached to each post.
CommentFound in faq paragraph. You have to log in to edit this translation. Meta |
|||
If you want to have a custom list in your theme, then you can pass the taxonomy name into the the_terms() function in the Loop, like so: | You have to log in to add a translation. | Details | |
Original untranslated
If you want to have a custom list in your theme, then you can pass the taxonomy name into the the_terms() function in the Loop, like so:
CommentFound in faq paragraph. You have to log in to edit this translation. Meta |
|||
This simply loops through the latest 10 product posts and displays the title and content of them. | You have to log in to add a translation. | Details | |
Original untranslated
This simply loops through the latest 10 product posts and displays the title and content of them.
CommentFound in faq paragraph. You have to log in to edit this translation. Meta |
|||
Example: | You have to log in to add a translation. | Details | |
Original untranslatedMeta |
|||
You can create new queries to display posts from a specific post type. This is done via the 'post_type' parameter to a WP_Query. | You have to log in to add a translation. | Details | |
Original untranslated
You can create new queries to display posts from a specific post type. This is done via the 'post_type' parameter to a WP_Query.
CommentFound in faq paragraph. You have to log in to edit this translation. Meta |
|||
This is true even for single entries. | You have to log in to add a translation. | Details | |
Original untranslated
This is true even for single entries.
CommentFound in faq paragraph. You have to log in to edit this translation. Meta |
|||
So as you can see the Meta Name 'books' is used as the $key parameter of the function get_post_meta() and the slugs of the text fields are used as keys for the resulting array. Basically CFC stores the entries as custom fields in a multidimensional array. In our case the array would be: | You have to log in to add a translation. | Details | |
Original untranslated
So as you can see the Meta Name 'books' is used as the $key parameter of the function get_post_meta() and the slugs of the text fields are used as keys for the resulting array. Basically CFC stores the entries as custom fields in a multidimensional array. In our case the array would be:
CommentFound in faq paragraph. You have to log in to edit this translation. Meta |
Export as
Comment
Short description.