| Paisley Abbey Dig 2010 |
| From Saturday 4th September the Forum will be excavating at the site of the Medieval Drain at Paisley Abbey. Click Here to go to our dedicated page on the excavation… |
The Renfrewshire Local History Forum was formed in 1988 to act as an umbrella organization, bringing together all the societies in the county which have an interest in history or heritage. The Forum acts as a link between the various societies by publishing newsletters and giving details of events which might be of interest.
The forum promotes all aspects of History and Archaeology in the OLD county or ’shire’ of Renfrew. This covers the modern administrative authorities of East Renfrewshire, Renfrewshire, Inverclyde, parts of southern Glasgow and other outposts.
As well as organising conferences and lectures the Forum publishes an occasional Journal (free to members) and also papers and books relating to the history of archaeology of Renfrewshire.
For former users of the Chat Box on our old website
With the implimentation of a new content management system, we have unfortunatly lost all of our subscribers. If you had previously registered on the RLHF Website to use the old chat box, please re-register (using the register link on the left sidebar)and contiune to use the new “Shoutbox” it works exactly the same way, though only the last 10 messages will be shown in the “Shoutbox”. If you wish to view older messages, please click on “Archive” towards the bottom left of the box. The Shotbox will only appear of the front page of the RLHF Website.
/*
Plugin Name: Customize Meta Widget
Plugin URI: http://jehy.ru/wp-plugins.en.html
Description: Add or remove links from meta widget, especially sometimes annoying link to wordpress.org.
Author: Jehy
Version: 0.2
Min WP Version: 2.6
Max WP Version: 2.9.0
Author URI: http://jehy.en.html
######## PLEASE GO DOWN TO EDIT THE CONTENT OF META WIDGET #############
*/
function replace_meta_widget()
{
unregister_sidebar_widget (’meta’);
$widget_ops = array(’classname’ => ‘widget_meta’, ‘description’ => __( “Log in/out, admin, feed and WordPress links”) );
wp_register_sidebar_widget(’meta’, __(’Meta’), ‘wp_widget_meta_modified’, $widget_ops);
}
add_action(’widgets_init’,replace_meta_widget);
function wp_widget_meta_modified($args) {
extract($args);
$options = get_option(’widget_meta’);
$title = empty($options['title']) ? __(’Meta’) : apply_filters(’widget_title’, $options['title']);
?>
<?php echo $before_widget; ?>
<?php echo $before_title . $title . $after_title;
#WIDGET BEGINS HERE. PLEASE EDIT AS MUCH AS YOU WANT
?>
<ul>
<?php wp_register();?>
<li><?php wp_loginout(); ?></li>
<?php wp_meta(); ?>
</ul>
<?php
#WIDGET ENDS HERE.
echo $after_widget;
}
?>