Free Church Website Widgets for Small Churches (No Cost)

Our copy-paste widgets—Verse of the Day, Proverb, Psalm, Reflection, and Prayer—drop into any page (including WordPress) and update automatically by timezone. No coding required, no paywalls. Abosolutily free

Widgets Designed for Small churches

Each widget is an iframe — a small, secure window on your page that displays content hosted by Small Church Help. Because we host and update the content, your site stays light and fast. The widgets change automatically by timezone, so your page is always current without manual updates.

Why a Membership?
We need to protect this content from being ‘scrap’ or sold.

✔ Free widgets: Verse of the Day, Proverb of the Day, Psalm of the Day
🔓 Membership unlocks: Reflections, Daily Prayer, Bible-in-a-Year, Daily Readings

Verse of the Day

A short Scripture passage to inspire and anchor visitors each day. Supports NIV and NKJV.

Cut and paste the code below ‘Daily Prayer’ -NIV or NKJ

<!-- Verse of the Day (NIV) -->
<iframe src="https://www.smallchurchhelp.org/Widget/daily_widget.php?type=verse&ver=niv&tz=America/New_York" title="Verse of the Day (NIV)" style="width:100%;height:220px;border:0;"></iframe>
<!-- Verse of the Day (NKJV) -->
<iframe src="https://www.smallchurchhelp.org/Widget/daily_widget.php?type=verse&ver=nkjv&tz=America/New_York" title="Verse of the Day (NKJV)" style="width:100%;height:220px;border:0;"></iframe>

Proverb of the Day

One sentence of wisdom for practical living. Supports NIV and NKJV

Cut and paste the code below ‘Proverb of the Day’ -NIV or NKJ

<!-- Proverb of the Day (NIV) -->
<iframe src="https://www.smallchurchhelp.org/Widget/daily_widget.php?type=proverb&ver=niv&tz=America/New_York" title="Proverb of the Day (NIV)" style="width:100%;height:220px;border:0;"></iframe>
<!-- Proverb of the Day (NKJV) -->
<iframe src="https://www.smallchurchhelp.org/Widget/daily_widget.php?type=proverb&ver=nkjv&tz=America/New_York" title="Proverb of the Day (NKJV)" style="width:100%;height:220px;border:0;"></iframe>

Psalm of the Day

A line from the prayer book of the Bible — comfort, praise, and hope. Supports NIV and NKJV.

Cut and paste the code below ‘Daily Prayer’ -NJK

<!-- Psalm of the Day (NIV) -->
<iframe src="https://www.smallchurchhelp.org/Widget/daily_widget.php?type=psalm&ver=niv&tz=America/New_York" title="Psalm of the Day (NIV)" style="width:100%;height:220px;border:0;"></iframe>
<!-- Psalm of the Day (NKJV) -->
<iframe src="https://www.smallchurchhelp.org/Widget/daily_widget.php?type=psalm&ver=nkjv&tz=America/New_York" title="Psalm of the Day (NKJV)" style="width:100%;height:220px;border:0;"></iframe>

These Widgets are free, just require a free membership (click here for Membership Levels)
“We give freely what we’ve learned — membership helps us grow together.”

Reflection of the Day

A short, public‑domain devotional thought from classic Christian writers, wrapped in simple HTML.

Cut and paste the code below ‘Reflection of the Day’

<!-- Reflection of the Day -->
<iframe src="https://www.smallchurchhelp.org/Widget/daily_widget.php?type=reflection&tz=America/New_York" title="Reflection of the Day" style="width:100%;height:260px;border:0;"></iframe>

Simple short daily Prayer

A simple, first‑person petition to help people pray — grounded and non‑technical.

Cut and paste the code below ‘Prayer of the Day’ –

<!-- Prayer of the Day -->
<iframe src="https://www.smallchurchhelp.org/Widget/daily_widget.php?type=prayer&tz=America/New_York" title="Prayer of the Day" style="width:100%;height:180px;border:0;"></iframe>

The Bible in a year, Daily on YOUR Website

The entire bible in One Year, both NIV and NJK

Just cut and paste this code into the custom HTML block on your website.

<iframe 
  src="https://www.smallchurchhelp.org/Bible_in_a_Year/" 
  width="100%" 
  height="500" 
  style="border:0;" 
  loading="lazy" 
  allowfullscreen>
</iframe>

Daily Readings, with the Apostles Creed and the Lord’s Prayer

Read daily from the Old and New Testaments and the Psalms

Just cut and paste this code into the custom HTML block on your website.

<iframe 
  src="https://www.smallchurchhelp.org/Daily_Readings/" 
  width="100%" 
  height="500" 
  style="border:0;" 
  loading="lazy" 
  allowfullscreen>
</iframe>

What are the Benefits to the church of this code on your church website?

Why Use These Widgets?
Each widget is built as an iframe—a small, secure window on your page that displays content hosted by Small Church Help. Because we host and update the content for you, your website stays light, fast, and maintenance-free. The widgets automatically adjust by timezone, so your page is always up to date without you lifting a finger.
Key Benefits
No plugin bloat – just copy and paste once, and you’re done.
📅 Always fresh – daily updates keep members returning, and steady new content supports local SEO.
🛠️ Works anywhere – compatible with WordPress (Gutenberg, Elementor, Divi, GenerateBlocks) and virtually any builder that accepts HTML.
🔒 Safe and secure – the iframe sandbox keeps the widget completely isolated from your site’s code.

How to Insert this code

Most modern website builders—including WordPress with its native Gutenberg editor—provide an option to add a Custom HTML block (sometimes called an HTML widget). This block is designed for situations just like this, where you want to paste in special code. Simply drag a Custom HTML block into your page, paste the iframe code inside it, and you’re ready to go. If you set the iframe’s width to 100%, it won’t stretch across your entire website—it will only expand to fill the space of the block or column where you placed it. This makes it easy to control whether the reading box takes up the whole page width, half a page, or just a small section, depending on where you insert the block in your layout.

How to Style this code: insert this code.

Take a look at this code in some of the code, this gives you control over how it looks –style=”width:100%;height:220px;border:0;”

Here’s what each option controls:
📏 width:100%;
Sets how wide the box is.
Use a percentage (%) like 100% to make the box stretch across the full width of the page or column. Best for responsive layouts on phones and tablets.
Use pixels (px) like 500px if you want the box to stay the same width no matter the screen size.

📐 height:220px;
Sets how tall the box is.
Increase it (e.g., height:600px;) to show the whole reading without scrolling.
Decrease it (e.g., height:150px;) for a compact preview box.
Like width, height can be in percent (%) or pixels (px), but pixels usually give more consistent results.

🖼️ border:0;
Controls the frame around the box.
0 removes the border completely.
To add one back, use something like border:1px solid #ccc; for a light gray outline.
You can adjust thickness and color (e.g., border:2px solid blue;).