tristopolis
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: RSS Feed not workingNobody?
Forum: Themes and Templates
In reply to: Emoticons not working :(??
Forum: Themes and Templates
In reply to: Need a wordpress themeAre you looking to pay for said theme?
Forum: Themes and Templates
In reply to: Themes for Childrenhttps://wp-themes.com/cute-things-wordpress-theme/
Or you could hire somebody. Cool idea btw
Forum: Themes and Templates
In reply to: Emoticons not working :(well.. its for the comments. Emoticons used to work with comments before I changed the array. Why don’t they now? https://magnusfx.com/?p=7 <- has emoticons in the comments
Forum: Themes and Templates
In reply to: Emoticons not working :(Before they were the default .gif array. the pngs are in the smilie directory.
/public_html/wp-includes/images/smilies/
my blog is at https://magnusfx.com
Forum: Themes and Templates
In reply to: Emoticons not working :(it doesn’t work.. still… in case my previous reply led you to believe otherwise
Forum: Themes and Templates
In reply to: Emoticons not working :(yes! its on “convert ?? to smilies”
Forum: Themes and Templates
In reply to: I’m listing recent categories but…You sir, are a god. Excellent work, it does exactly what I need it to. Thanks.
Forum: Themes and Templates
In reply to: I’m listing recent categories but…https://pastebin.com/d6e21f146
throws an error
Forum: Themes and Templates
In reply to: I’m listing recent categories but…the <h3> stuff doesn’t need to change
<ul class="recent"> <?php $category = get_the_category(); global $post; $myposts = get_posts("numberposts=15&category={$category[0]->term_id}"); foreach($myposts as $post) : setup_postdata($post); ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endforeach; ?> </ul>
^ That is the stuff I need to somehow work with the front page, you see how its like intertwined with HTML. That is because it displays a list format with clickable links. This is one of the reasons I can’t figure out how to include an if statement in there.
Forum: Themes and Templates
In reply to: I’m listing recent categories but…yes! if on the front page I want to use a different get_posts() that pulls from all categories (that part I think I can handle)
Forum: Themes and Templates
In reply to: I’m listing recent categories but…I know how to use conditionals, but I do not know how to implement this specific if(){} statement into a foreach (I am a php noob.)
Basically this specific problem stems from my unfamiliarity with php and my lack of understanding on how wordpress uses get_posts() (yes I’ve read the article, I really am not a programmer -_-)
Forum: Themes and Templates
In reply to: I’m listing recent categories but…the codex.