Ann
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How can the url of commenter open in a new window?I’m using Mozilla FireFox myself and I alway right click, new tab because everything would stay in the same window, different tabs. So it wouldn’t matter if it really wants to open a new window or not.
But for IE users it does. Most HATE it when they lose the original site. Because you might want to close the site that you followed and than you lost the site you came from as well.
@ Benjamin,
_blank does follow the url. It doesn’t just open an empty page like you say. I use it all the time for my links and it works just fine. I actually never heard of the new tag before.
My directories are all part of one site, it doens’t matter what they are called. It’s all one site, it aren’t seperate directories as in seperate parts. I just use those to keep myself organised. But could you please stay on the subject? I don’t feel like discussing this since I want my WordPress problem to be solved.Forum: Fixing WordPress
In reply to: How can the url of commenter open in a new window?Uhm, I personally hate it when I click a link and it opens in the same window because than I lost the site I orginally visited it.
But shouldn’t it be _blank instead of new?
Also, why are the main pages of your directories named main.php?
Because they are the main pages of those directories of course. But does it matter? I could call it monkeyboy.php if I would feel like it.Forum: Fixing WordPress
In reply to: It says there are no categories but there areI deleted the parent category, it works now.
Forum: Fixing WordPress
In reply to: It says there are no categories but there areThere are posts!!!
It says there are no categories, but there are. I posted in Work, than the category work should show up.
I do use subcategories? Why doesn’t that work?Forum: Themes and Templates
In reply to: The category shows as listNew problem. It still works, but now the categories don’t show at the bottom.
Categories:
No categoriesForum: Themes and Templates
In reply to: The category shows as listThank you havok! It worked 🙂
Forum: Themes and Templates
In reply to: The category shows as listI added .post-categories {display : inline; } to the css. Now the list goes more the left and the spaces above and under it are gone, but it’s still wrong. It still has a dot infront of it and it still isn’t next to the text.
Forum: Themes and Templates
In reply to: The category shows as listThis is my index.php code, maybe it helps:
<?include(“../header.php”);?>
<?php
/* Don’t remove this line. */
require(‘./wp-blog-header.php’);
?>
<meta http-equiv=”Content-Type” content=”text/html; charset=<?php bloginfo(‘charset’); ?>” />
<meta name=”generator” content=”WordPress <?php bloginfo(‘version’); ?>” /> <!– leave this for stats –>
<link rel=”stylesheet” type=”text/css” media=”print” href=”<?php echo get_settings(‘siteurl’); ?>/print.css” />
<link rel=”alternate” type=”application/rss+xml” title=”RSS 2.0″ href=”<?php bloginfo(‘rss2_url’); ?>” />
<link rel=”alternate” type=”text/xml” title=”RSS .92″ href=”<?php bloginfo(‘rss_url’); ?>” />
<link rel=”alternate” type=”application/atom+xml” title=”Atom 0.3″ href=”<?php bloginfo(‘atom_url’); ?>” />
<link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />
<?php wp_get_archives(‘type=monthly&format=link’); ?>
<?php //comments_popup_script(); // off by default ?>
<?php wp_head(); ?>
</head>
<body>
<?php if ($posts) : foreach ($posts as $post) : start_wp(); ?>
<?php the_date(”,'<b>’,'</b>’); ?> – <b>” rel=”bookmark” title=”Permanent Link: <?php the_title(); ?>”><?php the_title(); ?></b>
<?php the_content(); ?>
Posted by <?php the_author() ?> in <?php the_category() ?> @ <?php the_time() ?> <?php edit_post_link(); ?> |
<?php wp_link_pages(); ?>
<?php comments_popup_link(__(‘Comments (0)’), __(‘Comments (1)’), __(‘Comments (%)’)); ?>
<!–
<?php trackback_rdf(); ?>
–>
<?php include(ABSPATH . ‘wp-comments.php’); ?>
<?php endforeach; else: ?>
<?php _e(‘Sorry, no posts matched your criteria.’); ?>
<?php endif; ?>
<b><?php _e(‘Categories:’); ?></b>-
<?php wp_list_cats(); ?>
<b><label for=”s”><?php _e(‘Search:’); ?></label></b>
<form id=”searchform” method=”get” action=”<?php echo $PHP_SELF; ?>”>
<div>
<input type=”text” name=”s” id=”s” size=”15″ />
<input type=”submit” name=”submit” value=”<?php _e(‘Search’); ?>” />
</div>
</form>
<b><?php _e(‘Archives:’); ?></b>-
<?php wp_get_archives(‘type=monthly’); ?>
<b><?php _e(‘Other:’); ?></b>
<p class=”credit”><!–<?php echo $wpdb->num_queries; ?> queries. <?php timer_stop(1); ?> seconds. –> <cite><?php echo sprintf(__(“Powered by WordPress“), __(“Powered by WordPress, state-of-the-art semantic personal publishing platform”)); ?></cite>
<?include(“../footer.php”);?>