Import Non-WordPress Database
-
Hi, I am trying to import a database that is not a wordpress database. I want my theme to call the database as posts. this is what the database looks like:
CREATE TABLE
dump_music_lyrics(
idint(11) NOT NULL DEFAULT ‘0’ COMMENT ‘Unique Identifier’,
a_namevarchar(150) NOT NULL COMMENT ‘Artist / Band Name’,
a_tagvarchar(1) NOT NULL COMMENT ‘Artist Tag’,
a_albumvarchar(150) DEFAULT NULL COMMENT ‘Album Name’,
a_album_yearvarchar(4) DEFAULT NULL COMMENT ‘Album Year’,
a_songvarchar(150) DEFAULT NULL COMMENT ‘Song Title / Track Name’,
a_lyricstext COMMENT ‘Song Lyrics’
) ENGINE=InnoDB DEFAULT CHARSET=latin1;How can I change anything I need to to make it work? I tried changing them all to like rather than “a_song” it read “post_title” and then tried importing it, no luck. Any idea?
The topic ‘Import Non-WordPress Database’ is closed to new replies.