forked from tshrinivasan/odt2wordpress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
How-to-use.txt
48 lines (28 loc) · 877 Bytes
/
How-to-use.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
1.
Install the Required Software
sudo apt-get install unoconv
sudo apt-get install python-pip
sudo easy_install python-wordpress-xmlrpc
2.
Get login details for a wordpress site.
Put them in the file odt2wp.py
wordpress_rpc_url = "TYPE XML RPC URL FOR WORDPRESS HERE"
wordpress_username = "TYPE WORDPRESS USERNAME HERE"
wordpress_password = "TYPE WORDPRESS PASSWORD HERE"
3.
create a odt file.
example:
test.odt
4.
Push this file to the wordpress site.
python odt2wp.py test.odt
5.
This will upload the test.odt content and the images into the given wordpress site.
A new blog post will be created.
The post will be as Draft only.
Login to the site and check for the image alignments.
Images might be disaligned.
Fix the positions of the images.
Then, Publish the post.
Write to me for any queries at [email protected]
Thanks for using this software.