| Post |
|
Aaron - Admin
3:33 pm - January 11, 2009
posts 382 |
| |
|
Post edited 8:36 pm - January 11, 2009 by Aaron
- Enable "Inline Posts" and set it up.
- Select "use awp_pages" function.
- Edit the file you want to have show only titles and find a line that looks kinda like:
<h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
Add <?php do_action('awp_title'); ?> inside of the link like:
<h2><a href="<?php the_permalink() ?>" <?php do_action('awp_title'); ?> rel="bookmark"><?php the_title(); ?></a></h2>
- Enable the "Shift Pages" Module.
|
|
|
Gianko
- Guest
2:12 am - July 7, 2009
|
| |
|
Well,
this just stop working after an upgrade
is there a new way for this?
thanks in advance
|
|
|
Aaron - Admin
2:11 pm - July 20, 2009
posts 382 |
| |
|
Make sure that the options weren't unchecked. It happens occasionally.
|
|
|
Gianko
- Guest
1:21 am - July 22, 2009
|
| |
|
Post edited 5:23 am - July 22, 2009 by Gianko
inline post is enabled
use awp_pages is checked
and the "Shift Pages" Module.
and my loop
<?php if (have_posts()) : ?> <?php $npo = 1; ?> <?php while (have_posts()) : the_post(); ?> <?php if ($npo == 1) { ?> <?php do_action('awp_no');?> <div id="post-<?php the_ID(); ?>"> <h2 class="post-title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>" ><?php the_title(); ?></a></h2> <div class="entry"> <?php the_content('Continuar leyendo »'); ?> </div> <div class="post-meta"><span class="date"><?php the_time('F j, Y') ?></span> <?php comments_popup_link('0 Comentarios', '1 Comentario', '% Comentarios', 'comments', 'Comentarios Cerrados'); ?><?php do_action('awp_comments_link');?> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>" class="permalink">Permalink</a> </div> </div> <div class="ucomme"> <?php do_action('awp_comments'); ?> <?php do_action('awp_commentform'); ?> </div> <?php $npo++ ?> <?php } else { ?> <?php do_action('awp_yes');?> <?php if ($npo == 2) { ?> </div> <div class="post-recientes"> <h1>Recientes</h1> <div class="recientes"> <?php } ?> <p class="pentryu"><span class="fecha"><?php the_time('M j') ?>:</span> <a href="<?php the_permalink() ?>" rel="bookmark" class="rtitle" title="Permanent Link to <?php the_title_attribute(); ?>" <?php do_action('awp_title'); ?>><?php the_title(); ?></a> <?php comments_popup_link('0', '1', '%', 'comentarios', 'Comentarios Cerrados'); ?><?php do_action('awp_comments_link');?><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>" class="permalink"></a></p> <div class="entry"> <?php the_content('Continuar leyendo »'); ?> </div> <div> <?php do_action('awp_comments'); ?> <?php do_action('awp_commentform'); ?> </div> <?php $npo++ ?> <?php } ?> <?php endwhile; ?> </div> </div> <?php else : ?>- Use the following to copy and paste the code.
|
|
|
andi andi
- Guest
6:43 am - November 15, 2009
|
| |
|
Post edited 11:49 am - November 15, 2009 by andi andi
Post Awaiting Approval by Forum Administrator
|
|