neveremail
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Unlinking Parent CategoryThanks for the idea EVita but that would take the Parent categories away completely.
I just want them to be unlinked and appear in bold.
Forum: Fixing WordPress
In reply to: Unlinking Parent CategoryDoes anyone else have any ideas?
Forum: Plugins
In reply to: Separate Comments from Specified PostsI tried to do the above but when clicking the link to the comments page it 404s. I did not try to do the permalink structure, although I normally do have a permalink structure on my site.
Can anyone help?
‘
<?php include(‘header.php’); ?><?php include(‘sidebar.php’); ?>
<div id=”container”></div><div id=”content”>
<div class=”contentright”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php
// comments mod
if( isset($_GET[‘comments’]) && ($_GET[‘comments’] == 1) ) : ?>
<?php comments_template(); ?>
<?php else : // display post, not comments ?><div class=”post”>
<h3>
<?php the_time(‘l, j M Y’,display); ?>
</h3>
<div class=”title” id=”post-<?php the_ID(); ?>”>
<?php the_title(); ?>
</div>
<div class=”storycontent”>
<?php the_content(__(‘(more…)’)); ?>
</div>
<?php wp_link_pages(); ?>
&comments=1″>Comment on this post (<?php comments_number(); ?>)
</div><?php comments_template(); ?>
<?php endif; // end of commments mod ?>
<?php endwhile; else: ?>
<?php _e(‘Sorry, no posts matched your criteria.’); ?>
<?php endif; ?><div class=”postnavigation”>
<div class=”right”>
<?php next_post(‘ % »’,”,’yes’) ?>
</div>
<div class=”left”>
<?php previous_post(‘« %’,”,’yes’) ?>
</div>
</div>
</div> <!–Closes the contentright div–>
</div> <!– Closes the content div–>
<div id=”bottomcontentdouble”>
</div>
</div> <!– Closes the container div–>
<?php include(‘footer.php’); ?>
‘Forum: Plugins
In reply to: Single Comments Page?Im also interested in this
Forum: Fixing WordPress
In reply to: Unlinking Parent CategoryYes I have – Could not find any that did it….
Forum: Fixing WordPress
In reply to: Comments On Separate PageForum: Fixing WordPress
In reply to: Unlinking Parent Categoryanyone?…..
Forum: Fixing WordPress
In reply to: Unlinking Parent Categorydoes anyone have any ideas on this one?
Forum: Plugins
In reply to: Recent Posts on Non WordPress Pages (or different site)Would it be possible to make a wordpress page including the
<?php
require(‘/wp-blog-header.php’);
?>
and then have that page also showing only the recent posts, and then call that page to an external page by an Server Side Include?Forum: Plugins
In reply to: Recent Posts on Non WordPress Pages (or different site)thanks for the links.
They will both work well for the site.
What about including content on external sites (different domain)
Forum: Fixing WordPress
In reply to: 404 when entering the word “mother”I had a similar problem with certain larger posts being an issue and going 404 and failing to post whereas smaller ones would be okay.
I showed my host this thread and they fixed it in minutes. Apparently it was due to certain security settings being to tight.
Forum: Plugins
In reply to: RSS Feed Customization internal or external of the siteForum: Fixing WordPress
In reply to: Make the most recent post appear on a specified page of my siteHi thanks for that link – That is definately very useful. But its not really what I had in mind as I will have pictures included in each post and need those pictures to display as well.
Does anyone else have any ideas?