Joshua Sigar
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Is There A Limit Query Functions & Loop Calls?If you’re happy with the load time, then your visitors should be, too. Server? Don’t worry about it until your host complains.
Nonetheless, if you post your code at https://pastebin.com , we may give better answer.
Forum: Themes and Templates
In reply to: a rantWhat you did is static website. WP is dynamic. With static website, if you change, say, the header in one page, you have to update every other page. In WP, you just need to make the change in one place.
Tell me which one is easier. Writing an entry for your static web site compared to writing an entry in WP?
So, yeah, dynamic website (WP) is harder to customize in the beginning but easier to maintain than static website.
Programming is tough. CSS is tough. That’s the reality and, please, face it.
You don’t want to learn? Well, then face it: You have to use available themes. Or pay someone to create customized theme.
Forum: Fixing WordPress
In reply to: WP looks for wrong databaseMaybe you just need to execute the following after executing your other scripts
$wpdb->select(DB_NAME)
Forum: Themes and Templates
In reply to: Top of entry background disappearsYup, that’s it. Your content is too long for the white background you have. (https://normally.org/blog/wordpress/wp-content/themes/normal_design/img/csbbody-r.gif)
Anyway, you could just not use background image and just use background color and border and problem solved.
Forum: Themes and Templates
In reply to: word detectionOr try this…
https://www.huddledmasses.org/jaykul/ubernyms-20/Forum: Themes and Templates
In reply to: word detectionYou may be able to use the following plugin–not sure, never used it myself.
Forum: Themes and Templates
In reply to: Including blog posts in page not inside WPYou could create a new Page with a page template and use that as your homepage. The following plugin may be useful.
https://www.semiologic.com/software/static-front/Now, in the page template, you need that loop thingy going on.
https://codex.www.ads-software.com/Template_Tags/query_postsForum: Fixing WordPress
In reply to: Writing something – Continiously spacingI guess you don’t really know what I told you the cause is. Here’s one fix for now. If it gives unintended behavior, just come back.
Find the following section in your css file
p {
line-height:1.75em;
}Change that 1.75 to something else, say, .4
Forum: Plugins
In reply to: exec.php and <code>Well, we need to see the mess in order to clean it. Or at least describe “mess” better.
Forum: Fixing WordPress
In reply to: Writing something – Continiously spacingI think the WYSIWYG editor will give you a paragraph break when you press ENTER once.
Switch to non-WYSIWYG and pressing ENTER once will give you a line break (which is what you want) and pressing ENTER twice will give you a paragraph break.
Anyway, I may have misunderstood you. If so, I need a link to your site with the problematic post.
Forum: Themes and Templates
In reply to: the_content() does not workThere is one initialization function that you need to call inside the loop before calling all other template tags.
foreach($posts as $post) :
setup_postdata($post);
// the_content(), etc
endforeach;
Forum: Everything else WordPress
In reply to: Is WordPress Web 2.0?Yeah, what you said. And all that ajax thingy in the admin panels, definitely wordpress is a web 2.0 application. What’s the point of this question anyway?
Forum: Themes and Templates
In reply to: Best way to do multiple separate queries?If I would to reduce the number of queries, I would construct my own SQL query instead of using WP API (query_posts(), etc).
Or, this is a joke, get all posts with query_posts and display the posts you want with some mad php skill.
Forum: Fixing WordPress
In reply to: Control F to find keywords in text causes site to freezeNo. Is it the site or the browser that freezes?
Forum: Fixing WordPress
In reply to: Page not showing “page content”, but most recent blog postIf it happens only to your theme, may be you could zip it up and make it available for download so that someone could debug it with their wp installation.