Crazy Question – Updating Post ID

First off, I have no idea WHY you would want to do this. IDs are unique for a reason. If you change the ID, I can only see it creating more problems than it solves. Can you explain why you want to do this? I’m sure the community could give you an alternate solution. But … Read more

Insert post ID into the end of a slug preceeded by a dash

The rewrite argument in register_post_type is limited, but you can define a more complex structure with add_permastruct. The added benefits are that this will generate all the rewrite rules for you, and the new rules will overwrite the originals. You just have to be sure to hook after the post type is registered. function wpd_woo_product_permastruct(){ … Read more

create new users in db starting at what ID?

You don’t give them IDs. The user ID column in the database is an ‘auto increment’ column, meaning that the value is automatically created whenever a row is added. So just add your users without an ID and the database will create one for you.

How to I know the class or ID of my theme?

I have just noticed you have solved your problem after I wrote this answer. I’m posting it anyway for future visitors. Various web browsers have an “Inspect” function built in, for example; Firefox, Google Chrome, Chromium, Bravve etc. How to Inspect pages Load up the page you want to examine in an appropriate web browser … Read more

Form that generates an ID for the customer

WordPress doesn’t provide contact forms by default. So either you’ll have to use a form plugin or you’ll need custom CODE anyway. Since you didn’t provide any CODE or reference to any plugin you’re going to use, I cannot provide a sample CODE that’ll work for you. In principle, plugins do provide custom hooks that … Read more