The create tag has no wiki summary.
0
votes
1answer
12 views
Create Table Failed Column Date DateType
I have a plugin that creates tables and one of them is failing and I feel like it's due to either my syntax or the fact that I'm trying to create a column with datatype DATE and not TIMESTAMP (only ...
0
votes
0answers
21 views
MySQL Engine vs. Charset
I am attempting to have my plugin create a new table. I am fairly new to SQL. I have found two different method for creating tables:
Method I
$table_name = $wpdb->prefix . 'cool_table';
$sql = ...
0
votes
1answer
88 views
Take excerpt of the content of the post and send it as the title to create new post
Explaining my goal: I would create the title by taking the first words of the post content. Ex: In the Admin interface would be the title field blank and the first 10 words of content would be sent as ...
0
votes
1answer
20 views
more tables created when create a new site
Can someone suggest me an idea on this?
I am using Wordpress MU. And as per my requirement every user who register on main site will have a sub-site for them. And it is working correctly.
I ...
0
votes
0answers
34 views
Not Creating New Database Table [closed]
I've successfully created tables with previous plugins I've messed around with, but I can't seem to figure out exactly what's wrong with this. Hopefully it's an easy fix.
//CREATE ...
2
votes
1answer
62 views
Create pages automatically if they don't exist
I have a WPMU instance that works less like a network of blogs and more like a holistic application. I'm needing to do a check and see if 3 pages with the slugs 'home', 'login', and 'password' exist. ...
0
votes
0answers
13 views
Plugin “virtual” page [duplicate]
Possible Duplicate:
How to Rewrite Wordpress URL for a Plugin
Question
I am trying to create a plugin that adds an additional page to a Wordpress public site and allows the plugin to ...
0
votes
1answer
182 views
Theme Activation, Create Database Tables
I have been tasked with creating a theme that will be a base to list the site owners ebay store products.
I have fleshed most of the project out in plain old php to get everything working as regards ...
0
votes
1answer
35 views
Plugin: database creation
Can someone tell me what's wrong with this function?
function xattachments_db_install() {
global $wpdb;
$xattachments_db_version = "1.0";
$table_name = $wpdb->prefix ."xattachments";
...
3
votes
1answer
50 views
Multisite, turn off “create new site”
If someone enters the wrong URL to my wordpress multisite, they get the option to create another site in the network. Why does this happen, and how do I turn it off?
4
votes
1answer
200 views
When is it appropriate to create a new table in the WordPress database?
For a client we'll need 29,000 terms (all the highschool's in the US) and each term needs 6 meta items (address, phone...). My initial thought was to store the term meta information as suggested in ...
