[auto_id start=22001]
You can add a text field, visible to whomever (or only admins) or a hidden field and name it whatever you like. Put the short odd in the Default Value attribute of the filed, in that field's Advanced section.
Ok, so it's not actually seeding the entry ID, it is creating another ID and incrementing that one.
Your original question never mentioned entry id. Entry IDs are generated by WordPress. The entry id is the link between between item and item_metas table. You shouldn't change them or seed them because they are generated at the database level. Every data element added to a WordPress database receives an entry ID. If you examine the structure of any WordPress table in PHPMyAdmin, you'll see the ID field set to AUTO_INCREMENT. This means the database creates the ID when the record is inserted.
If you want to create your own numbering system, such as for invoicing or purchase orders, or some other purpose, use a text field with the shortcode as the default value. Quite often, hidden fields will be appropriate for this purpose.
Ok, thanks Victor
Please login or Register to submit your answer