louisstephens
Forum Replies Created
-
I installed the plugin and once I tried to activate it, I got a message saying it has an invalid header.
Forum: Fixing WordPress
In reply to: Custom Post Type >.Ah.. That was a big mess up on my behalf.. Thanks vtxyzzy.. . I appreciate the help and your patience with me.
With your code
<div id="sidebar-left"> <?php $vids = new WP_Query(array('post_type' => array('post', 'vids'))); if ($vids->have_posts()) { while ($vids->have_posts()) { $vids->the_post();?> <h1> <?php the_title(); ?></h1> the_content(); } } ?> </div>I noticed that the last closing
?>is not getting picked up. Well, in coda the color highlighting is not seeing it as a closing tag and wordpress is breaking again. I understand what you are saying though by having to encapsulate the_content(); in php tags.Forum: Fixing WordPress
In reply to: Custom Post Type >.Thanks vtxyzzy!
It did work. However, I tried adding
<h5>the_title();</h5 <p>the_content();</p>and it broke entirely. It seems the only thing I got working was just
the_title();which displayed everything in the post..Forum: Fixing WordPress
In reply to: Custom Post Type >.Oh ok.. So correct me if I am wrong..
where you have “display whatever you want”, I could simply put <?php the_title(); ?>
?I am pretty new to manipulating the post data.
Forum: Themes and Templates
In reply to: Create a full width pageUsually, you go about this by thinking in %. If you wish the div to take up the full screen width for example, you would do width: 100%. Just make sure you set min-width as well so the page doesn’t get so small when resizing.
Forum: Fixing WordPress
In reply to: WordPress Defecting : “White Screen of Death”Thanks for your help though! I installed 2.9.1 on my server and everything seems to be working now.. I wish I knew what was wrong with the original installs
Forum: Fixing WordPress
In reply to: WordPress Defecting : “White Screen of Death”Yes it does.
And thank you for helping me out with this issue. I did install just seconds ago wordpress 2.9 and it has seemed to work thus far. I just dont want this problem to continue whenever I need to upgrade to the newest version.
Forum: Fixing WordPress
In reply to: WordPress Defecting : “White Screen of Death”O no.. I did two completly different installs of wordpress. Each with their own database.
Forum: Fixing WordPress
In reply to: WordPress Defecting : “White Screen of Death”The option is still not present. It is doing it as well in my install on my godaddy server as well as the local host.
Forum: Fixing WordPress
In reply to: WordPress Defecting : “White Screen of Death”Yeah, I tried switching themes and it does not seem to be theme specific. Once I tried to activate the theme (one of the default themes) the result of click activated was the white screen. Once I hit the back button it was back to the theme page with the theme activated.
And I did follow the instructions on the link you provided. I am just at a loss for what to do if this keeps happening after a fresh install.
Forum: Fixing WordPress
In reply to: WordPress Defecting : “White Screen of Death”I am using my own custom theme. And I dont have any plugins running at the moment. However, the option of adding templates to the page are nowhere to be found.