convan23
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Multiple is_ statementsok thanks i also wanted to do that for some of the catagories. thanks ill giv it a look.
Forum: Themes and Templates
In reply to: Display Posts by AuthorDang i didnt even think to look at the codex. Thanks.
Oh and btw the code on the links you gave me were more complicated then they needed to be in my opinion. So I decided to try something out to see if it worked and it did – I just changed the loop to look like this:
code
<?php query_posts( ‘posts_per_page=1’ . ‘&author_name=’ . $user_identity ); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class=”about”>
<h1><?php the_title(); ?></h1>
<?php the_excerpt() ?>
<h5>» ” title=”Permanent Link to <?php the_title(); ?>”>Read More</h5>
</div>
<?php endwhile; ?>
<?php else : ?>
<?php endif; ?>
/code
And it works. But thanks anyway it got me thinkingOk thanks I’ll give it a try right now
Forum: Plugins
In reply to: Idea: Mailing List Pluginhey MagicG, your plug-in is great! But just one problem when using Microsoft Outlook:
When recieving an email it looks like this:Content-Type: multipart/mixed;
boundary=”—–=f4e28b68d43cb718863c4fa7775e1740″——-=f4e28b68d43cb718863c4fa7775e1740 Content-Type: text/html; charset=”UTF-8″ Content-Transfer-Encoding: 8bit test ——-=f4e28b68d43cb718863c4fa7775e1740–
For some reason it only does this in microsoft outlook … any ideas why?
Forum: Plugins
In reply to: Idea: Mailing List PluginAll of my subscribers make an account through wordpress – i have all of that integrated, so i was wondering if instead of having everyone put their email into a “newsletter signup” box or something similiar, the plugin would just automatically send it to everyone that was subscribed to the blog.