Jmanig
Forum Replies Created
-
Forum: Plugins
In reply to: [Automatic Post Tagger] Not tagging posts automatically after last update.My big mastake, its getting tagged, but wp tweets pro didnt put the tags in the tweets! Thanks!
Forum: Plugins
In reply to: [Automatic Post Tagger] Not Working For New PostI have also problems with this new update. My posts with feedwordpress dont get tagged aswell.
Please fix, or provide the download to the older version.
Forum: Plugins
In reply to: [Automatic Post Tagger] Not tagging posts automatically after last update.BTW, this is the autoblogger plugin:
Forum: Plugins
In reply to: [Automatic Post Tagger] Not tagging posts automatically after last update.Forum: Plugins
In reply to: [Automatic Post Tagger] Not tagging posts automatically after last update.Forum: Fixing WordPress
In reply to: Posts in category's missingSorry to post again, but maybe this can help anyone out?
archive.php:
<?php get_header(); ?>
<div id=”content”>
<?php if (is_category()) { ?><h2 class=”arh”><?php _e(‘Archive for’, ‘themezee_lang’); ?> <?php echo single_cat_title(); ?></h2>
<?php } elseif (is_date()) { ?><h2 class=”arh”><?php _e(‘Archive for’, ‘themezee_lang’); ?> <?php the_time(‘F Y’); ?></h2>
<?php } elseif (is_author()) { ?><h2 class=”arh”><?php _e(‘Author Archive’, ‘themezee_lang’); ?></h2>
<?php } elseif (is_tag()) { ?><h2 class=”arh”><?php _e(‘Tag Archive for’, ‘themezee_lang’); ?> <?php echo single_tag_title(”, true); ?></h2>
<?php } elseif (isset($_GET[‘paged’]) && !empty($_GET[‘paged’])) { ?><h2 class=”arh”><?php _e(‘Archives’, ‘themezee_lang’); ?></h2><?php } ?><?php if (have_posts()) : while (have_posts()) : the_post();
get_template_part( ‘loop’, ‘index’ );
endwhile; ?>
<?php if(function_exists(‘wp_pagenavi’)) { // if PageNavi is activated ?>
<div class=”more_posts”>
<?php wp_pagenavi(); ?>
</div>
<?php } else { // Otherwise, use traditional Navigation ?>
<div class=”more_posts”>
<span class=”post_links”><?php next_posts_link(__(‘« Older Entries’, ‘themezee_lang’)) ?> <?php previous_posts_link (__(‘Recent Entries »’, ‘themezee_lang’)) ?></span>
</div>
<?php }?><?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>Forum: Fixing WordPress
In reply to: Posts in category's missingCould it be a template issue?
I could install our new template, and check if the posts are back on the category pages?
Forum: Fixing WordPress
In reply to: Posts in category's missingThat didnt resolve the problem ??