Integrating a blog into a pre-existing css/html website
Posted November 12th, 2011 by Matt Borchert
So I've done some research into this, but maybe someone here has done it before and knows of a bit more simple solution than some of the wordpress tutorials I've found that are heavy on .php which isn't a language I know.
Anyone know of any good blogs where my client can just log on and post like facebook, but have it seamlessly update onto their webpage? I am very familiar with HTML and CSS coding and can manipulate all the divs or whatever to make a nice place for a pre-set blog to sit, but I want it to look and feel seamless.
Anyone have any good places to look over, or is wordpress the best solution?
Anyone know of any good blogs where my client can just log on and post like facebook, but have it seamlessly update onto their webpage? I am very familiar with HTML and CSS coding and can manipulate all the divs or whatever to make a nice place for a pre-set blog to sit, but I want it to look and feel seamless.
Anyone have any good places to look over, or is wordpress the best solution?
Featured Brands
Coming Soon!
Add Comment
5 Comments
Cutty. said about 1 year ago
And yeah, once the themes all set up, all the client has to do is click "add new post"
Matt Borchert said about 1 year ago
DrowningDesign said about 1 year ago
Its do-able but I think its going to take a little php to pull off.
*Note: This is just off the top of my head so take it with a grain of salt*
Create the site separate to wp. Then put wp inside a folder in the root directory so you have something like www.mysite.com/blog/wp-article.
You can then use a little bit of straight php on your sites main page to access the posts table in the database that wp uses.
ie: (sudo code)
$q = mysql_query('SELECT * FROM wp_posts WHERE ...stuff that you want ');
while($r = mysql_fetch_assoc($q)){
echo $r['post_title'];
...
}
ModernMarc said about 1 year ago
justinryan said about 1 year ago