• Hi,

    I have just installed the alphabetical list at 3.3.2 version of wordpress and I cannot find the shortcode, in order to place it in a static page. Could you please inform me about that?

    Thanks in advance for your support.

    Sofia Lempida

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi Sofia,

    I went to their website and did not see a facility or sortcode to insert a list alphabetized list of posts on a page.

    What are you trying to achieve? Perhaps there is a workaround?

    Thread Starter slempida

    (@slempida)

    Hi, I am trying to create an alphabetical list of shops and I was searching for a plugin that could automatically create such a list, by publishing the posts there.

    In WordPress, if you have a category for shops (say it is ‘shops’), you can take your themes category.php file (assuming it has one), create a copy and name it category-shops.php.

    In the loop in your new file, you can customize the display.

    Something like (note: very rough)

    <?php query_posts('cat=1,5,13&showposts=10&offset=0', 'order=ASC '); ?>
    
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
          <h3><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
    
           Pick One:
             <?php echo strip_tags(the_excerpt());?>
             <?php  the_excerpt_rss();?> No html tags
             <?php  the_excerpt();?>
    
             <?php the_time('F Y'); ?> | <?php comments_popup_link(__('Comment'), __('1 comment'), __('% comments'));?> | <a href="<?php echo get_permalink(); ?>" title="Read more">Read more...</a>
    
    <?php endwhile; else : ?>
    <?php endif; ?>

    In your menu, you could simply create a button to the category:
    http://yoursite.com/category/shops/

    …and end up with a custom display of posts in the shops category.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Shortcode for the plugin’ is closed to new replies.