Viewing 15 replies - 106 through 120 (of 129 total)
  • A new version (0.7) has been released at https://mediumbagel.org/?page_id=16. Summary of changes:

    • Miniblog now uses the timezone specified in Options : General : Date and Time
    • The code has also been cleaned up to conform with the WordPress Coding Standards.

    This is probably a stupid question, but ….

    I want to use 2 instances of Miniblog for 2 different things on the same page. Can anyone tell me how to do that?

    ya put posts in different categories. it describes how to call only certain categories from the documentaion

    I was replying to something that, it turns out, was posted in MARCH. Wish this thing took you to the LAST page instead of the FIRST page for idiots like me.

    But to Kanago, I’m using miniblog to drive three different categories of items on my car club’s web site, the New Members, Expiring Members, and Upcoming Events:

    https://zclubofhouston.com

    Here is the code for each to help you figure it out:

    <h2>Upcoming Events</h2>
    <ul>
    <?php miniblog_list_entries ('<li><span style="color: #444; font-weight: bold;">', '</span>&nbsp;::&nbsp;', '</li>', 'list-event', 10, 0, 'title'); ?></span>
    </ul>

    <h2>New Members</h2>
    <ul>
    <?php miniblog_list_entries ('<li><span style="color: #369; font-weight: bold;">', '</span>&nbsp;::&nbsp;', '</li>', 'list-member', 10, 0, 'title'); ?></span>
    </ul>

    <h2>Expiring Members</h2>
    <ul>
    <?php miniblog_list_entries ('<li><em>', '</em>&nbsp;::&nbsp;', '</li>', 'renew-member', 10, 0, 'title'); ?></span>
    </ul>

    You can see I varied the styling a bit in each one. And as you can see, I specified the category in each so it would know which entries I wanted displayed where.

    Oh, and ONE VERY IMPORTANT THING: This played the devil with throwing paragraph tags around until I inserted MTDew’s autodisable-paragraph script into the mini-blog script.

    Find this string starting around line 20:

    $identifier_q = '';
    if($identifier) {
    if(stristr($identifier, '%') !== FALSE)
    $identifier_q = 'WHERE blog LIKE '' . $identifier . ''';
    else
    $identifier_q = 'WHERE blog="' . $identifier . '"';
    }

    And right after it, add this:

    /* trying to hack MTDew disable wpautop just for this miniblog */

    remove_filter('the_content', 'wpautop');

    /* end hack */

    Then it won’t bother your regular entries.

    HTH.

    Thanks very much!

    I am having trouble figuring out how to post one instance of the date posted above the posts from that date. Is this possible?
    Along the lines of:
    Date
    Heading 1
    Heading 2
    Previous Date
    Heading 1
    And so on…

    A new version (0.8) has been released at https://mediumbagel.org/?page_id=16. Summary of changes:

    • The limit parameter for miniblog_return_entries(a€|) wasna€?t returning the correct number of entries, so I fixed it.
    • miniblog_create_rss_url(a€|) now has a version parameter for which RSS standard to use 0.92 or 2.0 (2.0 is the default).
    • An archived posts feature has been added. See miniblog_create_archive_url(a€|) in the improved documentation for details or take a look at my archive.

    A new version (0.9) has been released at https://mediumbagel.org/?page_id=16.

    Thread Starter baub

    (@baub)

    I support tcort’s effort in taking up the job of continuing the coding of this plugin. All props to him for reviving the code. I simply don’t have time anymore to work on it.

    tcort

    (@tcort)

    A new version (0.11) has been released at https://mediumbagel.org/?page_id=16.

    marginwalker

    (@marginwalker)

    Ive installed it, activated it, but its not showing up on my page after publishing a post!

    marginwalker

    (@marginwalker)

    Can anyone give me advice why my miniblog is not appearing??

    marginwalker

    (@marginwalker)

    Anyone able to help? ??

    delFUEGO

    (@delfuego)

    marginwalker, you should add a special template tag where you want the miniblog to show. Which tag is it? no idea. You should read the web page where you downloaded the plugin…

    chanzero

    (@chanzero)

    i successfully added code to my sidebar to get miniblog entries to show up there, but i can’t seem to create a Page and get the code working in there. i ended up doing Write Page and then inserted the code with RunPHP

Viewing 15 replies - 106 through 120 (of 129 total)
  • The topic ‘Plugin: Miniblog’ is closed to new replies.