EZ Horoscope & Astrology Plugin For WordPress Websites and Blogs

Daily Horoscope Content For Your Blog or Website Updated Daily

Enneagram Type 9 Illustration

How to Download and Install the EZ Daily Horoscope Plugin

Follow these simple steps to download, install, and activate the EZ Daily Horoscope Plugin on your WordPress site:

Step 1: Install The Plugin

  1. Log in to your WordPress admin dashboard (`https://yoursite.com/wp-admin`).
  2. Go to Plugins > Add New.
  3. Search for "EZ Horoscope".
  4. Click Install Now, and then click Activate
  5. Never done this? Click here to watch our tutorial video

Step 2: Add the Horoscope Shortcode to a Post or Page

  1. Create or edit a post or page where you'd like to display the horoscope.
  2. In the content editor, add the shortcode [ezhp_ezhoroscope sign="aquarius" language="en"] (replace "aquarius" with the desired zodiac sign and replace the language code if desired.).
  3. For weekly horoscopes, use the shortcode [ezhp_ezweeklyhoroscope sign="aquarius" language="en"] (replace "aquarius" with the desired zodiac sign).
  4. You can change the background color in the settings page.
  5. You can change the font in the settings page. **Font family names are case sensitive!! opens sans is not the same as Open Sans
  6. Click Publish or Update to save your changes.
  7. Questions? Click here to watch our 2 minute tutorial video.
  8. How to create an entire astrology website in less than 20 minutes.

Step 3: Preview Your Site

Visit the page or post where you added the shortcode to preview the daily horoscope content.

That’s it!

Your site is now set up to display daily horoscope content. The plugin automatically updates the horoscopes every day, ensuring fresh and engaging content for your visitors with no further work required!

Supported Languages

We now support 44 different languages. Content is created at 03:00UTC. Translation starts shortly thereafter and takes about 6 - 7 hours to complete for all 44 languages. If you access the content in a language before it is translated and added to the cache the page will display the previous day's content.

  • ar - Arabic
  • az - Azerbaijani
  • bg - Bulgarian
  • bn - Bengali
  • ca - Catalan
  • cs - Czech
  • da - Danish
  • de - German
  • el - Greek
  • eo - Esperanto
  • es - Spanish
  • et - Estonian
  • eu - Basque
  • fa - Persian (Farsi)
  • fi - Finnish
  • fr - French
  • ga - Irish
  • gl - Galician
  • he - Hebrew
  • hi - Hindi
  • hu - Hungarian
  • id - Indonesian
  • it - Italian
  • ja - Japanese
  • ko - Korean
  • lt - Lithuanian
  • lv - Latvian
  • ms - Malay
  • nb - Norwegian Bokmål
  • nl - Dutch
  • pl - Polish
  • pt - Portuguese
  • ro - Romanian
  • ru - Russian
  • sk - Slovak
  • sl - Slovenian
  • sq - Albanian
  • sv - Swedish
  • th - Thai
  • tl - Tagalog
  • tr - Turkish
  • uk - Ukrainian
  • ur - Urdu

Upgrade to the Professional license to access the premium features:

Using the Top Headline Level Feature

Overview
The top_headline_level feature in the EZ Horoscope Professional plugin allows you to customize the headline tag of your horoscope content. You can change the default <h1> tag to <h2>, <h3>, <h4>, or suppress the headline completely by setting it to none. This feature is available for professional version licenses and can be used directly within the shortcode that generates the horoscope content.

How to Use the Feature

To use this feature, you will modify the shortcode by adding the top_headline_level attribute. Below are the steps and examples:

  1. Basic Shortcode Usage
    The basic shortcode to display the daily horoscope looks like this:
    [ezhp_ezhoroscope sign="leo" language="en"]
    This shortcode will display the daily horoscope for Leo with the headline in an <h1> tag by default.
  2. Changing the Headline Level
    To change the headline level to <h2>, <h3>, or <h4>, add the top_headline_level attribute like this:
    [ezhp_ezhoroscope sign="leo" language="en" top_headline_level="h2"]
    Replace "h2" with "h3" or "h4" as needed. This will render the headline as <h2>, <h3>, or <h4> respectively.
  3. Suppressing the Headline
    If you prefer not to have a headline at all, set the top_headline_level attribute to "none":
    [ezhp_ezhoroscope sign="leo" top_headline_level="none"]
    This will suppress the headline, and no headline tag will be displayed in the output.

Example Implementations

Here are a few examples of how the shortcode can be used in your posts or pages:

  • Display with H2 Headline
    [ezhp_ezhoroscope sign="virgo" language="en" top_headline_level="h2"]
    This configuration displays the horoscope for Virgo with the headline in an <h2> tag.
  • Suppress the Headline
    [ezhp_ezhoroscope sign="pisces" language="en" top_headline_level="none"]
    Use this shortcode to display the daily horoscope for Pisces without any headline.

Additional Notes

  • Premium Feature: Remember, changing or suppressing the headline level is a premium feature. Ensure your subscription is active to use this feature.
  • Compatibility: This feature is designed to work seamlessly with the existing settings of the EZ Horoscope Professional plugin, including language settings and other customizations.

Additional Customization Capabilities

The premium version supports the use of a more granular shortcode that works as follows:

[ezhp_horoscope_section sign="zodiacSign" section="horoscopeSection" language="languageCode"]

Replace "zodiacSign" with the zodiac sign of your choice (aries, leo, virgo, etc.)

Replace "horoscopeSection" with one of the following:

  • section="guidance" - This displays the guidance section of the horoscope.
  • section="advice" - This displays the advice section of the horoscope.
  • section="conclusion" - This displays the conclusion section of the horoscope.

You can use the following section identifiers to display the various celestial influences:

  • section="moon-item"
  • section="sun-item"
  • section="mars-item"
  • section="mercury-item"
  • section="jupiter-item"
  • section="venus-item"
  • section="saturn-item"
  • section="neptune-item"
  • section="uranus-item"
  • section="pluto-item"

This way you can use several shortcodes and combine them in any order and design that you like.

Check out the following example page:

https://ezhoroscope.com/premium-version-leo/

In this page you can see that the page has been customized. Here is the code for that page so that you can see how it is done:


<div class="prem-2-body">
    <section class="prem-2-hero">
        <h2>Daily Horoscope For Leo</h2>
        <p>Unlock the secrets of the stars and discover personalized astrology insights for a fulfilling life.</p>
    </section>

    <section class="prem-2-section" id="cosmic-guidance">
        <h3>Cosmic Guidance</h3>
        <div class="prem-1-content">
            <img src="https://ezhoroscope.com/wp-content/uploads/2024/11/minimalist-cosmic-guidance.webp" alt="Cosmic Guidance" class="prem-1-float-image" />
            <p>[ezhp_ezhoroscope_section sign="leo" section="guidance"]</p>
        </div>
    </section>

    <section class="prem-2-section" id="cosmic-advice">
        <h3>Cosmic Advice</h3>
        <div class="prem-1-content">
            <img src="https://ezhoroscope.com/wp-content/uploads/2024/11/minimalist-cosmic-advice.webp" alt="Cosmic Guidance" class="prem-1-float-image" />
            <p>[ezhp_ezhoroscope_section sign="leo" section="advice"]</p>
        </div>
    </section>

    <section class="prem-2-section" id="celestial-influences">
        <h3>Celestial Influences</h3>
        <p>Explore how celestial bodies shape your day.</p>
        <div class="prem-2-celestial-influences">
            <div class="prem-2-celestial-item">
                <img src="https://ezhoroscope.com/wp-content/uploads/2024/11/minimalist-moon.webp" alt="Moon" class="celestial-image">
                Moon
                <p>[ezhp_ezhoroscope_section sign="leo" section="moon-item"]</p>
            </div>
            <div class="prem-2-celestial-item">
                <img src="https://ezhoroscope.com/wp-content/uploads/2024/11/minimalist-jupiter.webp" alt="Jupiter" class="celestial-image">
                Jupiter
                <p>[ezhp_ezhoroscope_section sign="leo" section="jupiter-item"]</p>
            </div>
            <div class="prem-2-celestial-item">
                <img src="https://ezhoroscope.com/wp-content/uploads/2024/11/minimalist-sun.webp" alt="Sun" class="celestial-image">
                Sun
                <p>[ezhp_ezhoroscope_section sign="leo" section="sun-item"]</p>
            </div>
            <div class="prem-2-celestial-item">
                <img src="https://ezhoroscope.com/wp-content/uploads/2024/11/minimalist-venus.webp" alt="Venus" class="celestial-image">
                Venus
                <p>[ezhp_ezhoroscope_section sign="libra" section="venus-item"]</p>
            </div>
        </div>
    </section>

    <section class="prem-2-section" id="cosmic-reflection">
        <h3>Cosmic Reflection</h3>
        <p>[ezhp_ezhoroscope_section sign="leo" section="conclusion"]</p>
    </section>

    <footer class="prem-2-footer">
        <p>&copy; 2024 Astrology Insights. All rights reserved.</p>
    </footer>
</div>

Now check out this example page in Spanish:

https://ezhoroscope.com/premium-version-libra/

Here is the code for that page:


<div class="prem-1-body">
  <div class="prem-1-container">
    <!-- Parallax Background -->
    <div class="prem-1-parallax">
      <div class="prem-1-stars"></div>
    </div>

    <!-- Header Section -->
    <div class="prem-1-header">
      <h1 class="prem-1-heading">Perspectivas Cósmicas</h1>
      <p class="prem-1-paragraph">Desbloquea la sabiduría del universo para Libra</p>
    </div>

    <div class="prem-1-section prem-1-advice">
      <h2 class="prem-1-heading">Consejo Cósmico</h2>
      <div class="prem-1-content">
        <img src="https://immortalunion.com/wp-content/uploads/2024/11/advice.webp" alt="Cosmic Advice" class="prem-1-float-image" />
        <p class="prem-1-paragraph">
                [ezhp_ezhoroscope_section sign="libra" section="advice" language="es"]
        </p>
      </div>
    </div>

    <div class="prem-1-section prem-1-guidance">
      <h2 class="prem-1-heading">Orientación Cósmica</h2>
      <div class="prem-1-content">
        <img src="https://immortalunion.com/wp-content/uploads/2024/11/guidance.webp" alt="Cosmic Guidance" class="prem-1-float-image" />
        <p class="prem-1-paragraph">
                [ezhp_ezhoroscope_section sign="libra" section="guidance" language="es"]
        </p>
      </div>
    </div>

    <!-- Celestial Influences Section -->
    <div class="prem-1-section prem-1-influences">
      <h2 class="prem-1-heading">Influencias Celestiales</h2>
      <div class="prem-1-planetary-grid">
        <!-- Moon -->
        <div class="prem-1-planet">
          <img src="https://immortalunion.com/wp-content/uploads/2024/11/moon.webp" alt="Moon" class="prem-1-planet-icon">
          <h3 class="prem-1-heading">Luna</h3>
          <p class="prem-1-paragraph">[ezhp_ezhoroscope_section sign="libra" section="moon-item" language="es"]</p>
        </div>
        <!-- Sun -->
        <div class="prem-1-planet">
          <img src="https://immortalunion.com/wp-content/uploads/2024/11/sun.webp" alt="Sun" class="prem-1-planet-icon">
          <h3 class="prem-1-heading">Sol</h3>
          <p class="prem-1-paragraph">[ezhp_ezhoroscope_section sign="libra" section="sun-item" language="es"]</p>
        </div>
        <!-- Jupiter -->
        <div class="prem-1-planet">
          <img src="https://immortalunion.com/wp-content/uploads/2024/11/jupiter.webp" alt="Jupiter" class="prem-1-planet-icon">
          <h3 class="prem-1-heading">Júpiter</h3>
          <p class="prem-1-paragraph">[ezhp_ezhoroscope_section sign="libra" section="jupiter-item" language="es"].</p>
        </div>
        <!-- Venus -->
        <div class="prem-1-planet">
          <img src="https://immortalunion.com/wp-content/uploads/2024/11/venus.webp" alt="Venus" class="prem-1-planet-icon">
          <h3 class="prem-1-heading">Venus</h3>
          <p class="prem-1-paragraph">[ezhp_ezhoroscope_section sign="libra" section="venus-item" language="es"]</p>
        </div>
      </div>
    </div>

    <!-- Cosmic Reflection Section -->
    <div class="prem-1-section prem-1-reflection">
      <h2 class="prem-1-heading">Reflexión Cósmica</h2>
      <p class="prem-1-paragraph">[ezhp_ezhoroscope_section sign="libra" section="conclusion" language="es"]</p>
    </div>

    <!-- Footer -->
    <div class="prem-1-footer">
      <p class="prem-1-paragraph">&copy; 2024 EZ Horoscope.</p>
    </div>
  </div>
</div>

Tarot Card Readings

How to Use the [ezhp_eztarot_3cardspread] Shortcode

The [ezhp_eztarot_3cardspread] shortcode displays a three-card tarot spread on your WordPress site, inheriting styles from the EZ Horoscope plugin settings. This ensures that the tarot layout aligns with the visual theme and branding configured in the EZ Horoscope settings page.

1. Basic Usage

To embed a three-card tarot spread into a page or post, simply insert the following shortcode in the WordPress editor:

[ezhp_eztarot_3cardspread]

This will generate a random three-card tarot reading based on the built-in tarot system of the EZ Horoscope plugin.

2. Using the Language Attribute

The Tarot content is in the process of being translated. At this time only English is available.

3. Where to Use the Shortcode

  • In a Post or Page:
    • Paste the shortcode directly into the WordPress editor.
    • Ensure that EZ Horoscope settings are properly configured for styling consistency.
  • Inside a Page Builder (Elementor, Gutenberg, etc.):
    • Use a Shortcode Block and paste the shortcode inside.

By following these instructions, you can effortlessly integrate the [ezhp_eztarot_3cardspread] shortcode into your WordPress site, providing users with an engaging tarot experience while maintaining a consistent and styled appearance. 🌟

Numerology

How to Use the [ezhp_eznumerology] Shortcode

The [ezhp_eznumerology] shortcode allows users to perform a numerology reading by entering their birth date and name. The numerology calculation is processed through the EZ Horoscope plugin and follows the numerology system configured in the EZ Horoscope settings page.

1. Basic Usage

To display a numerology reading form on your WordPress site, insert the following shortcode in the WordPress editor:

[ezhp_eznumerology]

This will generate an input form where users can enter their birth date and full name. The system will then calculate their numerology numbers and provide an interpretation.

2. How It Works

  1. The user enters their name and birth date.
  2. The system calculates key numerology numbers, such as:
    • Life Path Number (based on birth date)
    • Expression Number (based on name)
    • Soul Urge Number (based on vowels in the name)
    • Destiny Number (based on full name)
  3. The calculated results are displayed instantly with a detailed interpretation.

3. Where to Use the Shortcode

  • In a Post or Page:
    • Paste the shortcode directly into the WordPress editor.
    • Ensure that EZ Horoscope settings are properly configured for styling consistency.
  • Inside a Page Builder (Elementor, Gutenberg, etc.):
    • Use a Shortcode Block and paste the shortcode inside.

By following these instructions, you can easily integrate the [ezhp_eznumerology] shortcode into your WordPress site, allowing visitors to explore their numerology insights while maintaining a consistent and styled appearance. 🔢✨

Benefits of Including Horoscope Content in Your WordPress Site

Horoscopes have long captivated the interest of people worldwide. From casual curiosity to daily devotion, millions of individuals check their horoscopes each day, making it a powerful tool to boost traffic and engagement on your WordPress site. If you're a WordPress admin or site owner, adding horoscope content can significantly benefit your website in the following ways:

1. Increase Traffic and Page Views

It’s estimated that over 70 million people read their horoscope daily, with millions more checking it periodically throughout the week. By offering daily horoscopes for the 12 zodiac signs, you create a reason for visitors to return to your site regularly, increasing repeat visits and overall page views. People interested in astrology often browse multiple horoscope pages, leading to an increase in time spent on your site.

2. Improve SEO and Keyword Ranking

Horoscope content naturally lends itself to high-ranking keywords like “daily horoscope,” “zodiac sign predictions,” and more. Adding horoscope pages for each zodiac sign can improve your site’s visibility in search engine results and attract organic traffic. Many people search for specific terms like “Aquarius horoscope today” or “Leo love horoscope,” allowing you to capture a broader audience.

3. Boost Advertising Revenue

Increased traffic means more ad impressions and click-throughs. With horoscopes being a frequent stop for many users, you can leverage this content to increase your advertising revenue. Place ads on high-traffic horoscope pages, and consider offering premium horoscope services that can be monetized directly.

4. Low Maintenance Content with the EZ Daily Horoscope Plugin

The easiest way to include daily horoscope content on your WordPress site is by using the EZ Daily Horoscope Plugin. This plugin automatically updates the daily horoscopes for all 12 zodiac signs, ensuring fresh content every day without the need for manual updates. Simply install the plugin, activate it, and add the shortcode to your posts or pages. The plugin takes care of the rest, making horoscopes a "set it and forget it" solution that boosts traffic and engagement with minimal effort.

5. Appeal to a Wide Audience

Astrology appeals to a broad demographic, cutting across age, gender, and cultural lines. Millennials and Gen Z, in particular, are increasingly drawn to astrology as a form of self-discovery. Including horoscope content on your site taps into this wide-ranging interest, potentially attracting new users and expanding your audience.

Conclusion

Adding horoscope content to your WordPress site is a simple, effective way to drive more traffic, increase page views, and boost advertising revenue. With millions of people reading their horoscopes daily, the EZ Daily Horoscope Plugin makes it easier than ever to bring this popular content to your site. Start using the plugin today and watch your audience grow!

See it in Action

immortalembrace.com - Free Version

This client has created a page with 12 image links to each of the individual zodiac pages where the plugin is implemented.