Making WordPress Blog My Home Page
-
I’m trying to make my wordpress blog my home page.
I tried changing my index.php file as directed.
I tried the code
<?php
/* Short and sweet */
define(‘WP_USE_THEMES’, true);
require(‘wp-blog-header.php’);
?>I also tried
<?php
/* Short and sweet */
define(‘WP_USE_THEMES’, true);
?>require(‘../wordpress/wp-blog-header.php’);
?>I keep getting an error that looks like this:
Warning: require(wp-blog-header.php) [function.require]: failed to open stream: No such file or directory in /home/myfitne3/public_html/index.php on line 4
Fatal error: require() [function.require]: Failed opening required ‘wp-blog-header.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/myfitne3/public_html/index.php on line 4
Can someone please help?
- The topic ‘Making WordPress Blog My Home Page’ is closed to new replies.