can’t login now – help!!
https://www.accessinc.org.au/wp-admin
I would like to add a section in there for news that we can update (we are doing a website rather than a blog) can you tell me what to do to add that please?
I’d suggest that you rename the default post category “News” and use posts to publish your news items. Displaying extracts from these posts on the sidebar itself would require a fair bit of theme editing. But, if you add:
<div id="#right-block">
<ul>
<?php wp_list_categories('title_li');?>
</ul>
<?php if (!function_exists('dynamic_sidebar') || !dynamic_sidebar()) : ?>
<?php endif; ?>
</ul>
</div>
to sidebar.php, it will display a link to your News category. You’ll also be able to add the Recent Posts widget (Admin/Appearance/Widgets) to the sidebar and show your last 5 or so news items.
Also I seem to have 2 home pages. one is static the other i think was default created with teh template
Open header.php and look for:
<li><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></li>
Remove this line. Then navigate to Admin/Settings/Reading. Under “Front page displays”, check “static page”, choose your static home page from the dropdown and then save your changes.