alentejo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: rss problem in version 2.3.1 feeds wont be displayedAnd if I use syndication I get the message: Cheatin’ uh ?
Please can anybody help?
Forum: Fixing WordPress
In reply to: RSS PROBLEMMore or less the same problem here. RSS feeds just won´t be displayed. Not even from my own site. Can anybody help and explain to a newby how to display my feeds in my blog?
Forum: Fixing WordPress
In reply to: To link to a Page, find the ID of the target PageAhh sorry, just one last thing. I have excluded 1 category with -23 but I also want to exclude -2 but I do not know how to write that code. It seems that this does not work:
<?php
if (is_home()) {
query_posts(“cat=-23”.”cat=-2″);
}
?>Forum: Fixing WordPress
In reply to: To link to a Page, find the ID of the target PageOkay thanks a lot. Problem is solved. Now I can make it exactly as I want and it works. Thanks again
Forum: Fixing WordPress
In reply to: To link to a Page, find the ID of the target PageIt seems there once was a plugin for this but the link is dead: http://dev.wp-plugins.org/file/front-page-cats/trunk/front_page_cats.php?rev=57&format=raw
Forum: Fixing WordPress
In reply to: To link to a Page, find the ID of the target PageJust one question, Can I manually put in the post the homepage has to look for as in:
<?php query_posts(‘cat=11’); ?>
<?php query_posts(‘cat=13’); ?>
<?php query_posts(‘cat=14’); ?>
<?php query_posts(‘cat=15’); ?>
etc.?
Or can I put in something like:
<?php do not query_posts(‘cat=23’); ?>Thanks in advance
Forum: Fixing WordPress
In reply to: To link to a Page, find the ID of the target Pageah okay will try, thanks
Forum: Fixing WordPress
In reply to: To link to a Page, find the ID of the target PageNo I do not want a static homepage. It´s just that property should not show up there, the rest of the categories should
Forum: Fixing WordPress
In reply to: To link to a Page, find the ID of the target PageSorry, I got it right, had a setting wrong in my other program. So it uploads perfectly to the Property Page but how do I now prevent it from showing up at the homepage?
Thanks you immensely so far.
Forum: Fixing WordPress
In reply to: To link to a Page, find the ID of the target PageThanks but it´s still posting on the homepage instead of the property page
Forum: Fixing WordPress
In reply to: To link to a Page, find the ID of the target PageWell, I´m obviously not a programmer lol. I made this template:
<?php
/*
Template Name: Property
*/
?>
<?php get_header(); ?><div id=”content” class=”narrowcolumn”>
query_posts($query_string . “&order=ASC”)
<?php if (have_posts()) : ?>
<div class=”navigation”>
<div class=”alignleft”><?php posts_nav_link(”,”,’« Previous Entries’) ?></div>
<div class=”alignright”><?php posts_nav_link(”,’Next Entries »’,”) ?></div>
</div><?php while (have_posts()) : the_post(); ?>
<div class=”post”>
<div class=”itemhead”>
<h2 id=”post-<?php the_ID(); ?>”>” rel=”bookmark” title=”Permanent Link: <?php the_title(); ?>”><?php the_title(); ?></h2><?php foreach((get_the_category()) as $cat) { if ($cat->cat_name == ’12’) { ?>
<span class=”favorite”><img src=”<?php bloginfo(‘template_url’); ?>/images/favorite.png” alt=”Favorite Entry” /></span>
<?php } } ?>
<?php /* Support for noteworthy plugin */ if (function_exists(nw_noteworthyLink)) { ?><span class=”metalink”><?php nw_noteworthyLink($post->ID); ?></span><?php } ?>
</div>
<small><?php the_time(‘F jS, Y’) ?> <!– by <?php the_author() ?> –></small><div class=”entry”>
<?php the_content(‘Read the rest of this entry »’); ?>
</div><p class=”postmetadata”><?php the_category(‘, ‘) ?> | <?php edit_post_link(‘Edit’,”,’ |‘); ?> <?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?></p>
<!–
<?php trackback_rdf(); ?>
–>
</div><?php endwhile; ?>
<div class=”navigation”>
<div class=”alignleft”><?php posts_nav_link(”,”,’« Previous Entries’) ?></div>
<div class=”alignright”><?php posts_nav_link(”,’Next Entries »’,”) ?></div>
</div><?php else : ?>
<h2 class=”center”>Not Found</h2>
<p class=”center”><?php _e(“Sorry, but you are looking for something that isn’t here.”); ?></p>
<?php include (TEMPLATEPATH . “/searchform.php”); ?><?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
But what do I have to do to make it get the property listings and place them under the page Property?
Forum: Fixing WordPress
In reply to: To link to a Page, find the ID of the target PageThanks, it is much clearer now. Don´t know for sure if I can manage but I´ll try.
Forum: Fixing WordPress
In reply to: To link to a Page, find the ID of the target PageThanks, my site is up and running. http://www.alentejohome.com/blogs Point is that I want to post to pages instead of categories. I somehow have to let wordpress know that instead of posting to http://www.alentejohome.com/blogs/?cat=12 it should post to
http://www.alentejohome.com/blogs/?page_id=87 But I can no where find where I can change this link. I want all my properties not in the blog itself but under pages/property and want to do that by rss feed upload.Forum: Fixing WordPress
In reply to: To link to a Page, find the ID of the target PageThanks, but where do I find the link that I have to change?
IE: post title
I know the link id´s of my pages but where do I find the url that I have to change in order that the link will go to the page?
I can not find the template for that and if I download the index.php it is empty.Forum: Fixing WordPress
In reply to: Newbie question how to link internalThanks, will try and let you know