Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author WandererLLC

    (@wandererllc)

    Sorry, there’s no way to do this right now (without writing the code yourself :-p). Good suggestion though; I’ll add it to the list!

    Mauricky

    (@mauricky)

    This plugin is exactly what i’m looking for. A front end user and the possibility to define the number of files per user would be great!
    Congrats!

    Plugin Author WandererLLC

    (@wandererllc)

    Thanks for the suggestion!

    you could do the following: put the shortcode into a posting, then insert this code with the correct post id into the sidebar.php

    <?php
    $post_id = 26;
    $queried_post = get_post($post_id);
    $content = $queried_post->post_content;
    $content = apply_filters('the_content', $content);
    $content = str_replace(']]>', ']]>', $content);
    echo $content;
    ?>

    (found that code here: http://www.tipsandtricks-hq.com/query-or-show-a-specific-post-in-wordpress-php-code-example-44)

    this works for me!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: List Yo' Files] File lists in sidebar widget?’ is closed to new replies.