cgreer96
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Post via e-mail ProblemThe thing is it doesn’t even show the posts in my wordpress admin area, much less on the page where the footer code goes. When I manually check for new posts in the email account it says there are none to be found. However if I go and log in to that email account I can see the posts just sitting there, waiting to be retrieved.
Forum: Fixing WordPress
In reply to: Post via e-mail ProblemStill not working for me. Created new admin account with the same email address that I have set up on my webhost, but the wp-email.php says that it “appears” there are no posts.
Forum: Fixing WordPress
In reply to: Post via e-mail ProblemI am having this problem as well. Anyone have a solution?
Forum: Themes and Templates
In reply to: Formatting posts that appear on my personal websiteAlas, it works! Thanks so much, I appreciate the time you spent helping me!!!
Forum: Themes and Templates
In reply to: Formatting posts that appear on my personal websiteWhen I am on the WordPress “new post” area I just type up a new post, highlight the words I want to be linked, click the “link” button, enter in the URL, and it embeds the link in my post. You can see on my actual WordPress blog (linked above) that it works perfectly, but for some reason that link is stripped out when it is brought over to my personal website.
Forum: Themes and Templates
In reply to: Formatting posts that appear on my personal websiteThanks uwiuw, but that didn’t work. All it did was make the titles of my posts links, but not the actual embedded links.
Not using RSS because it seems like I have more control over the content using PHP, although maybe the RSS would give me everything I need?
Still looking for advice…seems like it should be a pretty easy solution but I am a noob with this PHP stuff.
Forum: Themes and Templates
In reply to: Formatting posts that appear on my personal websiteOk, I have figured out the formatting, but the embedded hyperlinks in my WordPress posts are not working. Basically all that appears on my personal website is text with no links.
Forum: Themes and Templates
In reply to: Formatting posts that appear on my personal websiteBTW, here is the current code I am using to grab the posts from WordPress. This is an .html file so I just modified my .htaccess file so that the PHP code could work. Do I add the formatting to this code?
<?php $posts = get_posts('numberposts=10&order=DSC&orderby=post_title'); foreach ($posts as $post) : start_wp(); ?> <?php the_date(); echo "<br />"; ?> <?php the_title(); ?> <?php the_excerpt(); ?> <?php endforeach; ?>