Opened 5 years ago
Closed 5 years ago
#7547 closed defect (bug) (fixed)
Filter news on templates cant work
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Priority: | high | Milestone: | 2.6.2 |
| Component: | General | Version: | 2.6.1 |
| Severity: | blocker | Keywords: | |
| Cc: |
Description
i using a code to filter news on sidebar. on 2.5 series works well, but in 2.6.1 cant works. any fix? heres is the template code
<table cellpadding="0" cellspacing="0" id="AutoNumber44" >
<tr>
<td style="width: 519px; text-align: left; background-color: #e3e3e3; border-width: thin; vertical-align: bottom;">
<?php
global $post;
$myposts = get_posts('numberposts=1&offset=0&category=24');
foreach($myposts as $post) :
setup_postdata($post);
?>
<img src="<?php bloginfo('stylesheet_directory'); ?>/images/alerta.gif" alt="Destacada" /><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<?php endforeach; ?>
</td>
</tr>
</table>
Change History (4)
If get_posts() isn't returning a post then it is probably the same as #7326. I haven't been able to reproduce these problems, unfortunately. I cut-and-paste your code into my sidebar and it works fine. Can you try the debugging steps mentioned here:
Note: See
TracTickets for help on using
tickets.

related with http://trac.wordpress.org/ticket/7326 ?