Difference between revisions of "FileZilla Wiki talk:Community Portal"

From FileZilla Wiki
Jump to navigationJump to search
(Undo revision 14613 by CodeSquid (talk))
(ePmHbKWdN)
Line 1: Line 1:
it depends on the retoiuslon used to make the video. On the highest retoiuslon you can only send about 15 seconds of a video. If u want ot send a 30 second video you have to make the video using the lowest retoiuslon setting.
+
I'm using query_posts for the loop  along the lines of this example from sgsihingmamazane.com  $sticky, 'caller_get_posts' => 1 ) );0607if (have_posts()) :08    while (have_posts()) : the_post();09        the_title();10        the_excerpt();11    endwhile;12endif;1314?>I have that display the first two sticky posts, then called your plugin for the post by category.I think I found the code I need in wordpress codex to exclude the sticky posts (    post__not_in' => $sticky,)  but I'm not comfortable enough trying to edit plugin files to try to figure out on my own where to put it. Thanks in advance,Todd

Revision as of 11:17, 27 September 2012

I'm using query_posts for the loop along the lines of this example from sgsihingmamazane.com $sticky, 'caller_get_posts' => 1 ) );0607if (have_posts()) :08 while (have_posts()) : the_post();09 the_title();10 the_excerpt();11 endwhile;12endif;1314?>I have that display the first two sticky posts, then called your plugin for the post by category.I think I found the code I need in wordpress codex to exclude the sticky posts ( post__not_in' => $sticky,) but I'm not comfortable enough trying to edit plugin files to try to figure out on my own where to put it. Thanks in advance,Todd