Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author José Leonardo

    (@joseleonardo)

    Hi beckswade,

    to remove the meta tag you will need to change function.php, I am going to implement a easier way on the next update.

    By now you can open the function.php, look for the “Sidebar Callback” line and remove this line below:

    <aside id=”archives” class=”widget widget_archive”>

    <h3 class=”widget-title”><?php _e( ‘Archives’, ‘lupercalia’ ); ?></h3>

      <?php wp_get_archives( array( ‘type’ => ‘monthly’ ) ); ?>

    </aside> <!– .widget .widget_archive –>

    <aside id=”meta” class=”widget”>

    <h3 class=”widget-title”><?php _e( ‘Meta’, ‘lupercalia’ ); ?></h3>

      <?php wp_register(); ?>

    • <?php wp_loginout(); ?>
    • <?php wp_meta(); ?>

    </aside> <!– .widget –>

    Do not change anything else.

    ———-

    About your second question, I don’t know how to help you as long as I don’t know much about the plugin you are using. But it should be wrapped by a “content” class div and an “article” div.

    Something like this:

    <div class=”content”>

    <article>

    content here

    </article>

    </div>

    Thread Starter beckswade

    (@beckswade)

    Many thanks – that’s really helpful!

    Theme Author José Leonardo

    (@joseleonardo)

    You are welcome. I could help you more if I knew about the plugin, but unfortunately I don’t.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Removing meta tag’ is closed to new replies.