totalbigbrother
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Using get_the_tag to label post titlesThank you so much AsraiLight.
The tags was not showing up for me either, until i added the code before the
whilestatement.Thanks very much!
Forum: Fixing WordPress
In reply to: Admin links on front end asks me to relogin* Innocent Bump 🙂 *
Forum: Fixing WordPress
In reply to: can’t find categories sub-panelNo problems, Glad you managed to sort it out in the end.
Forum: Fixing WordPress
In reply to: can’t find categories sub-panelHi,
If you hover your mouse to the right of the “Posts” link on the right, you should see a down arrow come in sight.
Click this arrow to “expand” the sub-panel..
Then click “Categories”.
If not just go to:
http://www.REPLACE.com/wp-admin/categories.php
(Replace “REPLACE” with your domain name..)Hope this helps..
Forum: Themes and Templates
In reply to: single.php & dynamic menu questionIm also looking for the exact same thing.
Has anybody got a solution?Thanks..
Forum: Fixing WordPress
In reply to: Changing the blog description in the header to be e-mail hyperlinkIf people send email to “Blog Description” it will just float round in space?
Why not send it to your email address?..
<div id="blog-description"><a href="mailto:YOU@DOMAIN.com</a></div>Forum: Fixing WordPress
In reply to: Day Counter – Posted on Day 2 etcHi, Does anybody know if this is possible?
Thanks
Forum: Fixing WordPress
In reply to: Do custom fields work inside a WP_Query loop inside a page?This might work..
<ul> <?php $my_query = new WP_Query('cat=XX'); while ($my_query->have_posts()) : $my_query->the_post(); ?> <li><a href="<?php $link = get_post_meta($post->ID, "site-url", $single = true); if ( $site-url ) { echo $site-url; } else { the_permalink(); } ?>"><?php the_title(); ?></a></li> <?php endwhile; ?> </ul>Is that helpful? – That’s how i would of done it.
Forum: Fixing WordPress
In reply to: Moving files from folder to root levelIm not sure, but could you just copy the folder and paste into the root?
Then go into the dashboard and change you blog addres to point to the root of the site.
Hope this helps.