Tagged Questions
3
votes
1answer
108 views
Resource Issues: Importing external data into custom post type and keeping records up to date
I have a custom post type that imports external data nightly. When the import script runs for the first time, it imports approximately 4,000 records (data will grow). Each record consists of a post ...
0
votes
1answer
173 views
WordPress import not importing custom taxonomy
First off, feel obliged to say I've posted this already in the WP Support Forum (http://wordpress.org/support/topic/wordpress-import-not-importing-custom-taxonomy) hoping to have more luck here.
I'm ...
0
votes
1answer
77 views
Fast worpress backup/clone
i have a problem with 2 websites. I have for example
site1.com
site2.com
How can i make a perfect clone of site1.com for site2.com? i mean i want a method that i can do this in minutes, not ...
1
vote
1answer
292 views
Custom post types not imported properly
I've registered a custom post type:
function create_gallery_post_type() {
register_post_type( 'sim_gallery',
array(
'labels' => array(
'name' => __( 'Sim Gallery' )
),
...
0
votes
2answers
1k views
Importing old blog with regular posts into new custom post types
I have 2 older WP blog installs with regular posts that I would like to bring over to a new blog. One of the older installs is for "news" posts and the other is for "blog" posts (I know this was not ...
0
votes
1answer
372 views
Two-way synchronizing of a post type among multisite blogs
Is it possible to two way sync a post type between multiple sites on a multisite install? For example if someone makes a change to an entry under post type "inventory" on Site A how can I make that ...