Thank you for going out to a lack of understanding of English
Default Sticky widget area shows only home.
I Think You need to change from ‘home’ to ‘Exeter Journal’
is OK?
To do this customization, you must create a Child Theme.
https://codex.wordpress.org/Child_Themes
Recipe:
1. Create holder at wp-content/themes directory
name:Konpaku
2. Create style.css at Konpaku holder
/*
Theme Name: Konpaku
Author: Konpaku
Author URI: http://florensia-world.de/wordpress/
Version:1.0
Template:raindrops
*/
3. Copy raindrops template file , paste at Konpaku holder
template name
index.php
page.php
4. Create new template part file at at Konpaku holder.
Template file name : stickywidget.php
<?php if ( is_page( 'your Exeter Journal page ID' ) && is_active_sidebar( 'sidebar-3' ) ) { // Widget only home ?>
<div class="topsidebar">
<ul>
<?php dynamic_sidebar( 'sidebar-3' );?>
</ul>
</div>
<br class="clear" />
<?php
}
?>
5. Code Change index.php, page.php
index.php
<?php if ( is_home( ) && is_active_sidebar( 'sidebar-3' ) ) { // Widget only home ?>
<div class="topsidebar">
<ul>
<?php dynamic_sidebar( 'sidebar-3' );?>
</ul>
</div>
<br class="clear" />
<?php
} // end if ( is_home( ) && is_active_sidebar( 'sidebar-3' ) )
?>
change below
<?php get_template_part( 'stickywidget' ); ?>
page.php
Add code
<div id="yui-main">
<div class="yui-b <?php raindrops_add_class( 'yui-b' ); ?>">
change below
<div id="yui-main">
<div class="yui-b <?php raindrops_add_class( 'yui-b' ); ?>">
<?php get_template_part( 'stickywidget' ); ?>
is finish and next
Open Dashboard / Themes
Change theme from Raindrops to Konpaku.
done
Thank you.