iand
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Turn off WYSIWYG editor for all contributorsHave a look around your dashboard –
Options > Writing >Formatting: [] Users should use the visual rich editor by defaultand untick. Control for individuals is also on the user’s page.Forum: Themes and Templates
In reply to: increasing number of Recent Comments in sidebarA wordpress.com account does not let you edit your theme templates.
Forum: Fixing WordPress
In reply to: Adding link navigation to top of pagesThe code you need is something like:
<?php previous_post('« %', '') ?> | <a href="<?php bloginfo('url'); ?>">Home</a> | <?php next_post('% »', '') ?>
See this codex page for more information.On where to put it, it needs to go somewhere inside The loop though exactly where is up to you. Probably just after your
<?php the_date(); ?>tag would be a good start.Forum: Themes and Templates
In reply to: post wizardryMaybe this will help?
http://wordpress.org/support/topic/63693Forum: Fixing WordPress
In reply to: My web lost his style and appear like a basic html webI think what you need to do is in your options page, change
localhostfor your internet address, then you will need to modify your hosts.conf file so that you computer loads the files locally.
Something like this:
localhost aichman.getmyip.comThis thread should help and there are others you should be able to find with searching:
http://wordpress.org/support/topic/58402Forum: Fixing WordPress
In reply to: My rss feed does not work with firefoxjwwf – extra lines at the top of your RSS feeds tend to be caused by plugins from my experience. Have you tried going through and turning plugins off one by one to see if you can diagnose further?
Forum: Fixing WordPress
In reply to: My rss feed does not work with firefoxCan you explain exactly what does not work? It seems fine in my version of Firefox and also via bloglines so things look like they are working.
Forum: Fixing WordPress
In reply to: Confused about rssThemes shouldn’t have any effect on RSS layouts I think. Personally I think that if you are subscribing via RSS then you are more interested in the content than the appearance, so stripped is fine.
Forum: Fixing WordPress
In reply to: Confused about rssThough if you really want to, you could try this.
Forum: Fixing WordPress
In reply to: How do I do this – Please Help!You will need to replace
the_contentwiththe_excerptin your theme’sindex.phpfile. Note that this will strip all images, links etc.
For more control, have a search for the excerpt_reloaded plugin and use that instead.Forum: Fixing WordPress
In reply to: “Archives” shows in Page, BUT Page navigation doesn’t WORK~!query_postsoverrides the querry generated by the URL (and is why next/previous are not working).
I think this will get around the problem (or if not there is some combination ofquery_postsand$pagedI have seen on these forums before.)
http://wordpress.org/support/topic/56336?replies=5#post-306660Forum: Fixing WordPress
In reply to: Inserting adsense into posts via the loopBased on these two threads, give this a whirl:
http://wordpress.org/support/topic/55981
http://wordpress.org/support/topic/63693<?php if(($post == $posts[0]) || ($post == $posts[4]) || ($post == $posts[9])) {
<div class="your ad div">
Your ad code here
</div>
<?php } ?>You might need to adjust the 0,4 and 9 to suit, I am just guessing as the first post appears be considered number 0 for the loop. Backup, this might cause meltdown 🙂 – (i have not tested it but I think it is sound)
I think there also a guide for similar things here:
http://www.tamba2.org.uk/wordpressFlickrRSS should be just about what you are looking for.
Forum: Themes and Templates
In reply to: Different post styles for different authors?There should be no need for if/else’s. The code will just print
<div class="postbyme">or<div class="postbyher">The only place it might break down is if you then add a third author without adding some CSS too.
And it might be
.postbymeetc.. I always get my # and .’s mixed up.Forum: Themes and Templates
In reply to: Different post styles for different authors?The simplest would be
<div class="postby<?php the_author(); ?>">and style accordingly.