Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Could you please post your code ? I try to achieve something similar on my page.

    Cheers,
    Pascal

    Thread Starter anonymer

    (@anonymer)

    Thx Mike for your fast reply. Works like a charm. I am hiding the footer now via css.

    PS: I’m loving the plugin. Will be using it in future projects. Is there any possibility to donate for your hard work ?

    Cheers,
    Pascal

    Thread Starter anonymer

    (@anonymer)

    Ok i found it out :

    /inc/template-tag.php :

    function the_bootstrap_posted_on() {
            printf( __( '<span class="sep">Posted on </span><a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s" pubdate>%4$s</time></a><span class="by-author"> $
                            esc_url( get_permalink() ),
                            esc_attr( get_the_time() ),
                            esc_attr( get_the_date( 'c' ) ),
                            esc_html( get_the_date() ),
                            esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
                            esc_attr( sprintf( __( 'View all posts by %s', 'the-bootstrap' ), get_the_author() ) ),
                            get_the_author()
            );
            if ( comments_open() AND ! post_password_required() ) { ?>
                    <span class="sep"> | </span>
                    <span class="comments-link">
                            <?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'the-bootstrap' ) . '</span>', __( '<strong>1</strong> Reply', 'the-bootstrap' ), __($
                    </span>
                    <?php
            }
            edit_post_link( __( 'Edit', 'the-bootstrap' ), '<span class="sep">&nbsp;</span><span class="edit-link label">', '</span>' );
    }
    endif;

Viewing 3 replies - 1 through 3 (of 3 total)