Reputation: 195
Can you please shed some light on incorporating word press into the site.
Here my requirement is..i have a tab called 'my blog' in my website.
When the user clicks that button he able to see the name of my blog
and my posts and archives and also tags..these much information i want.
I don't want to use complete word press in my site.
Upvotes: 0
Views: 101
Reputation: 2462
This is really simple. Follow my instructions.
blog
in your root.wordpress
)blog
tab
give the link as www.example.com/blog.Reference Links:
Famous 5-minute installation - WordPress
Cheers !!!
Upvotes: 1
Reputation: 1742
Assuming you are self-hosting, and have access to your controls;
You will need to create a new MySQL database, and safely store your database name, username, hostname and password for later.
You will have to download wordpress http://wordpress.org/, and follow the installation instructions also found at http://wordpress.org/.
In order to do what I think you're wanting to do, you will need to create a new theme by creating a new folder in your Content > Themes folder, and move ALL your site files into this new directory.
Add to your CSS file to make it an applyable 'theme':
/*
Theme Name:
Theme URI:
Author:
Author URI:
Description:
Version:
License:
License URI:
*/
You will then have to assign this new theme to Wordpress, and create at least two template files,
category.php
single.php
Within these two templates is where you will loop through your posts, and display your full posts, respectively.
This isn't a graceful solution, however, it will do what you want it to in a rudimentary way. It would be better to develop a proper theme for your site, and fully take advantage of Wordpress as a CMS, and not just a blogging platform. There are lots of resources on how this is done, and it may seem overwhelming but start small, that's how you learn.
Upvotes: 0