asechrest
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: how to alter blog font size?You need to link your website. Many of the people answering questions here can edit your CSS in real time and help tell you exactly what to do.
Forum: Themes and Templates
In reply to: Query Post as a Bulleted listTry everything after:
<div class="post" id="post-<?php the_ID(); ?>">All the way to just before:
<?php endwhile; ?>Then insert the code I gave you. If you’re still having trouble, it’ll be easier if you paste your code at wordpress.pastebin.ca and report the link back here.
It looks ok on mine. Perhaps try re-uploading the plugin or just the images folder from a fresh copy of the plugin.
Forum: Fixing WordPress
In reply to: Blockquote spacingPlease link your website and I’ll check the CSS.
Forum: Fixing WordPress
In reply to: Black Border on Image – CSS is cleanGlad I could help.
Forum: Fixing WordPress
In reply to: Black Border on Image – CSS is cleanIn your HTML, try
<img src="..." style="border:0" ...>the style=”border:0″ part is what would hopefully fix the border. Not totally sure, though.
Forum: Themes and Templates
In reply to: Query Post as a Bulleted listHere’s some code I use:
<ul> <li><strong><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><span><?php the_title(); ?></span></a></strong><br /> @ <?php the_time('m/d/Y'); ?> by <?php the_author_posts_link(); ?><br /> <?php comments_popup_link('Comments (0)', 'Comment (1)', 'Comments (%)'); ?></li> </ul>This will show a title link, the author, and the number of comments, in a bulleted unordered list. You would use this in your loop.
Notice I left out
the_content, so this is merely a list of titles showing none of the post content until a user clicks on the post.Forum: Fixing WordPress
In reply to: Problems accessing the admin area of my ‘blog’ siteIt doesn’t look like WordPress is installed, to me.
Forum: Fixing WordPress
In reply to: Multi-Word Tags?What’s the code you’re using to try to strip the apostrophe?
str_replace("'", "", $string);Forum: Fixing WordPress
In reply to: Can I put an iframe on a WP page?I stand corrected, then. Spent too much time lately learning about WP filtering, now I think everything’s filtered. 😉
Forum: Fixing WordPress
In reply to: Can I put an iframe on a WP page?I believe WordPress sanitizes your input and automatically kills
<iframe>, among other things.You could use a custom page template for the page you’re creating and then code the iframe into the template. Or hard-code it into
page.phpand use anis_page()conditional to have it show up only on the new page you created.Forum: Fixing WordPress
In reply to: is there a REAL programmer around that can help me? (doubt it)I found that quite funny. 🙂
Were you editing your
functions.phpfile?Paste the contents of your
functions.phpfile at wordpress.pastebin.ca and then report the link back here.Forum: Themes and Templates
In reply to: How does index.php differ from pages.phpReview Stepping Into Templates and the template hierarchy.
It’s not redundant. Consider the extremely common scenario where you want a WordPress Page to display differently than the homepage. In this case, the template system automatically looks to
page.php. If there is nopage.php, it falls back onindex.php, which is much more desirable than simply having the website break if it can’t findpage.php.Forum: Fixing WordPress
In reply to: 2.7.1 HackedHere’s a good example of getting yourself hacked by not carefully considering the implications of installing a plugin.