• Resolved hamutalwz

    (@hamutalwz)


    Hi,
    Is there a way to add some text area at the top of the homepage – above the circles?
    a place to write a little something about the site?
    Thank you.

Viewing 4 replies - 16 through 19 (of 19 total)
  • Thread Starter hamutalwz

    (@hamutalwz)

    no I didn’t.
    not sure how to add a widget area there.

    Thread Starter hamutalwz

    (@hamutalwz)

    now I’ve done it:
    <?php if ( is_active_sidebar( ‘homepage_widget’ ) ) : ?>
    <ul id=”sidebar”>
    <?php dynamic_sidebar( ‘homepage_widget’ ); ?>

    <?php endif; ?>

    and of course I registered the new widget area in functions.php:

    /*** NEW WIDGET AREA ***/
    register_sidebar(array(
    ‘name’=> ‘homepage widget’,
    ‘id’ => ‘homepage_widget’
    ));

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Nice one! I didn’t know how to do this, thanks for informing me and many others ??

    Thread Starter hamutalwz

    (@hamutalwz)

    you’re very welcome :-).

Viewing 4 replies - 16 through 19 (of 19 total)
  • The topic ‘adding a fixed text area on the homepage’ is closed to new replies.