vaxace
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Importing posts from old blog to new blogThanks for the info.
Guess I’ll take a look at the schema and the actual data and see what it would take to migrate the data.
D.
Forum: Fixing WordPress
In reply to: Importing posts from old blog to new blogOne of the main reasons we didn’t upgrade the old blog is all of the steps it would take to do it.
A couple of questions:
– How many tables are involved in a single post?
– Is there an API method for procedurally creating a new post?I am a long-time PHP/MySQL developer. I just don’t have a lot of WordPress development experience. I’m thinking I might be able to write a script to do the migration for me (we’re talking almost 5,000 posts).
Thanks.
Forum: Themes and Templates
In reply to: What generates theAha! Thanks for that.
Been tearing my hair out for about an hour.Forum: Hacks
In reply to: Getting the directory of another pluginGreat. Thanks for the info.
Forum: Hacks
In reply to: Getting the directory of another pluginInteresting.
What do you mean by “option”, though.
Is that a setting (get_option( ‘active_plugins’ );)
or a global variable, or a function, or an action or filter?Thanks!
Forum: Hacks
In reply to: Is add_settings_field() required?Thanks for the response.
I really don’t like the idea of a callback for at least each type of field (text, button, etc.).
I’m using Smarty to handle my templating ( truly despise mixed PHP and HTML) and want to use it for my admin page as well. Adding settings to the markup is a snap this way. You’re editing almost pure HTML with absolutely no embedded PHP.
Hmmm. I wonder if there are any actions or hooks in there that I could take advantage of. 😉
Thanks again.