ohdear
Forum Replies Created
-
Forum: Plugins
In reply to: Search custom fields tableSorry, I just meant the plug-in was more relevant to customizing the search, more of a base to start off on, rather than meeting your requirements.
Should be:
<?php /* If this is the frontpage */ if ( is_home() || is_page() || is_category() ) { ?>
Forum: Plugins
In reply to: Search custom fields tableJeromea€?s Keywords, seems to be a little closer to what you’re looking for – https://www.vapourtrails.ca/wp-keywords
Forum: Themes and Templates
In reply to: Theme under Gallery EmbeddingIt’s from the #rap background image “bodybag.gif”, you override it with an inline style:
background-image: none;
Forum: Themes and Templates
In reply to: Excluding ALL subpages?Try using the depth parameter, for example I use:
<?php wp_list_pages('title_li=&depth=1'); ?>
Which only shows top level pages and with no heading. Hope that what you’re looking for ??
Forum: Fixing WordPress
In reply to: How do I create a summary without using more/the excerpt() ?Try the_excerpt Reloaded plugin – https://guff.szub.net/the-excerpt-reloaded
Forum: Requests and Feedback
In reply to: Different avatars like LiveJournalTry Moody – https://www.gudlyf.com/index.php?p=365
Forum: Fixing WordPress
In reply to: Detect more than 1 published post?Thank you so much to both of you ??
Forum: Plugins
In reply to: Interest in CSS dropdrown menu for pages plugin?It’s how you inserted the script, should be something like <script type=”text/javascript” src=”https://jasonbainbridge.com/wordpress/wp-content/themes/default/multimenu.js”></script>
Forum: Themes and Templates
In reply to: h3 problemIt’s not enclosed in a h3 tag :
Thursday February 17th, 2005<br>
Entry #167 … “I’m losing it. I swear.”
<class=”storytitle” id=”post-167″></h3>There actually quite a few problems – https://validator.w3.org/check?verbose=1&uri=http%3A//www.unchained-melody.net/wp/
Forum: Fixing WordPress
In reply to: Page Title ProblemI’m not sure if I understand correctly, the default is
<title><?php bloginfo(‘name’); ?><?php wp_title(); ?></title>which on the home page the page title is “Your Blog Name”, and individual entries is “Your Blog Name » Your Post Title” And I was wondering why you didn’t want the blog title in the page title of your individual entries?
With <title><?php wp_title(); ?></title> You don’t have page titles for archives either – https://www.hometownquotes.com/blog/index.php?m=200502
Now with the code, on the home page the page title is “Your Blog Name” while the individual entries have “» Your Post Title” as their page title.
Since you’re using WordPress 1.2.2, it actually should something like:
<?php if (!$single) : ?>
<title><?php bloginfo(‘name’); ?></title>
<?php else : ?>
<title><?php wp_title(); ?></title>
<?php endif; ?>Hope that helps you ??
Forum: Fixing WordPress
In reply to: created pages not showing background imageIt’s not displaying for me either in FF, IE, Moz and Opera, it says kubrickbgwide1.jpg can’t be found, it should be kubrickbgwide.jpg
Forum: Fixing WordPress
In reply to: Page Title ProblemIs there any particular reason, you didn’t want your blog name in the page title, on individual entries? I find it’s good for SEO purposes, otherwise:
<?php if(is_home()) : ?>
<?php bloginfo(‘name’); ?></title>
<?php else : ?>
<title><?php wp_title(); ?></title>
<?php endif; ?>Forum: Fixing WordPress
In reply to: customising category pagesI think for category headers, the easiest option would be to make a file called category.php and place in your current theme folder.
Then use <?php single_cat_title(); ?> to return the category title for page, e.g <h2><?php single_cat_title(); ?></h2>
or
<img src=”<?php bloginfo(‘url’); ?>/img/<?php single_cat_title(); ?>.gif” alt=”<?php single_cat_title(); ?>” />
Forum: Fixing WordPress
In reply to: customising category pages