Joshua Sigar
Forum Replies Created
-
Forum: Your WordPress
In reply to: Online Magazine Using WordPressEveryone has said it; but can’t resist. Simple yet impressive. Good job.
Forum: Themes and Templates
In reply to: New Photoblog ThemeNice!
You mentioned on your site that the hack you had to do was adding columns to some tables. Couldn’t you just make use the custom fields?
If you want to release this, you don’t want to hack it like that. You could seek for advise here or chatroom #wordpress for better implementation of your theme.
Forum: Fixing WordPress
In reply to: Different numbers of posts front and elseForum: Installing WordPress
In reply to: Can I define the Frontpage?Try this plugin
https://www.semiologic.com/software/static-front/Forum: Themes and Templates
In reply to: The really NEW Theme ViewerA future idea is to create a plugin for WordPress, that automatically installs any theme from the viewer, just by typing in the theme viewers theme-id – comments on this?
You might wanna give this a look. https://mattread.com/projects/wp-plugins/installer-the-plugin/
Forum: Fixing WordPress
In reply to: Outside the LOOP !It should. Just put that code in sidebar.php, or wherever your sidebar section is.
Forum: Fixing WordPress
In reply to: Post Serial Number within a CategoryYou could do something like this
$post_no = $counter + $posts_per_page * ($page - 1)
Of course, you have to somehow get the values for the variables in that formula above
Forum: Fixing WordPress
In reply to: Post Serial Number within a CategoryYou may not want to use ordered list because you have less control of how you want the number to appear.
You could just make your own counter.
<?php $post_no = 1; ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?><?php echo $post_no; // display as you like ?>
// display post, etc<?php $post_no++; >
<?php endwhile; else: ?>
<?php _e('Sorry, no posts matched your criteria.'); ?><?php endif; ?>
Forum: Fixing WordPress
In reply to: mozilla vs. explorer color in linksBecause maybe you styled a:link while Mozilla displayed a:visited
Forum: Fixing WordPress
In reply to: Search Form SpacingStart by adding the following CSS code
#searchform {
margin: 0px;
}Forum: Themes and Templates
In reply to: The really NEW Theme ViewerIn conjunction with the uploading system, there should be a Theme Validator, which will return Invalid if the theme has an improper (or lack of) theme metadata in style.css, will return warning if certain hooks do not present, if it doesn’t support widget, etc.
I plan to do this myself, but feel free to take upon it.
Forum: Everything else WordPress
In reply to: Question Regarding ArchivesYou can use this https://pastebin.com/686344
I modified line 36
Backup the original first.Forum: Fixing WordPress
In reply to: Show IDForum: Plugins
In reply to: Pull current category ID information$current_page_cat = $wp_query->get_query_var('cat');
Forum: Fixing WordPress
In reply to: Show ID$postID = get_the_ID();