shawncampbell
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Page where posts are grouped and then sorted alphabeticallyThis is sloppy, and incomplete, and may not even be a proper solution, but it may help you get started:
<?php $tag = wp_tag_cloud('format=array' ); ?> <?php foreach($tag) { ?> <?php wp_tag_cloud(''); ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <?php if( has_tag($tag) ) { ?> <h3><?php the_title(); ?></h3> <?php the_content('More ?'); ?> <?php } ?> <?php endwhile; ?> <?php endif; ?> <?php } ?>
Forum: Fixing WordPress
In reply to: Themes: Other options – Usning SFTPyes, just unzip them locally and then upload them to your theme folder
Forum: Fixing WordPress
In reply to: Page where posts are grouped and then sorted alphabeticallyForum: Fixing WordPress
In reply to: browsing blog folders on my site…. that dont exist!?Do you have a custom Category Base?
Settings > Permalinks > Optional > Category baseForum: Fixing WordPress
In reply to: Redirect after Registration and LoginI’ve had success with Peter’s Login Redirect. Can’t vouch for compatibility with wp-forum though.
Forum: Everything else WordPress
In reply to: Is this possible? Regarding news and linkingwith PHP you could truncate the content you are importing based on number of characters.
for your wordpress content, you can display just the excerpt or up to the
<!--more-->
QuickTag:<?php the_content('Read more...'); ?>
details about the_content
Forum: Everything else WordPress
In reply to: Contact formsThere isn’t a built-in contact form. Generally a contact form is embedded on a Page using a plug-in. You might try one of these.
Forum: Fixing WordPress
In reply to: displaying content of multiple paginated pagesClarification: when referring to a “subpage,” I do not mean a child Page (created with the Pages hierarchy); I mean a subsequent page within a single Page (created with the
<!--nextpage-->
QuickTag).Forum: Fixing WordPress
In reply to: Randomly show 1 of 5 most recent post in a categoryIn your query, I believe you can just use
&orderby=rand
Forum: Fixing WordPress
In reply to: How do I edit the name of a Category?Use Categories tab, listed under Posts, to edit category names. You’ll see the categories listed on the right hand side; click Edit or Quick Edit beneath the category name.
By default, the categories page is here:
https://yourwpsite.com/wp-admin/categories.phpForum: Fixing WordPress
In reply to: Add Links to my FooterSo your footer.php might look like this:
<?php /** * @package WordPress * @subpackage Magazeen_Theme */ ?> <div id="footer"> <div class="about"> <h4>Terminal Gamer - Gaming is our passion.</h4> <p class="about-text"> <?php echo get_settings( 'mag_about_blog' ); ?> </p> <p class="copyright"> <a href="https://terminalgamer.com/about-terminal-gamer/">About</a> | <a href="https://terminalgamer.com/staff-directory/">Staff Directory</a> | <a href="https://terminalgamer.com/become-a-staff-member/">Become a Staff Member</a> | © 2009 Copyright <?php bloginfo( 'name' ); ?> </p> </div><!-- End about --> </div><!-- End container --> </div><!-- End footer --> <div id="link-back"> <div class="container clearfix"> <?php wp_footer(); ?> </body> </html>
Forum: Fixing WordPress
In reply to: Front PageYou could omit a category from the posts that display on the homepage. This would be done in your theme’s index.php file.
Forum: Fixing WordPress
In reply to: browsing blog folders on my site…. that dont exist!?I’d check your theme’s 404 page first, then perhaps .htaccess and permalink settings.
If you post details about how your theme’s 404 page is structured, or what your permalink configuration is we may be able to give more direction.