ScorpionGod Lair

Think Beyond The Standard Strategy

  • Home
  • About
  • Archives
  • Contact

How To Get Genesis Post Featured Image (and) All Other Attached Images URLs

September 26, 2019 By Shyam Chathuranga Leave a Comment

When I was working on a quick Schema.org Microdata project, I wanted to get Genesis Featured Image for each post as well as all other images attached in the post body.

This code snippet will get just the Featured Image URL without any HTML tags in Genesis sites,

$featuredimage = genesis_get_image( array(
'format' => 'url',
'size' => 'full',
) );

echo $featuredimage;

Then following code will get all other images attached in the post to an Array. Then I got 2 Array Keys to output just the Image URL again,

$images = get_children( array (
'post_parent' => $post->ID,
'post_type' => 'attachment',
'post_mime_type' => 'image',
'exclude' => get_post_thumbnail_id()
));

if (current($images)) {
$key1 = key($images);
}

if (next($images)) {
$key2 = key($images);
}

echo $images[$key1]->guid;
echo $images[$key2]->guid;

Tweet
PinIt
Email
Print

How To Get Tag ID by Tag Name, (and) Tag ID Directly On Tag Pages

September 25, 2019 By Shyam Chathuranga Leave a Comment

If you want to get Tag ID, when you already have the Tag Name, following code snippet can be used.

$tag = get_term_by ( 'name', single_tag_title( '', false ), 'post_tag' );
$tag_id = $tag->term_id;

If you don’t have the Tag Name already, this code can be used.

$tag_id = get_queried_object()->term_id;

I have tested both codes on Tag Archive pages.

Tweet
PinIt
Email
Print

Build Trust With Your Prospects By Business Email

February 1, 2014 By Shyam Chathuranga Leave a Comment

Trust building method by business email“Learning to trust is one of life’s most difficult tasks.”

However, lot of things in this world rely upon Trust. It could be a trust with your life partner. A relationship first starts with the small trust occur in the heart of men and women.

But, you know what relationships aren’t the only one which consume Trust.

Yeah, it could be your prospect who decide whether or not to buy your stuffs according to the trust they have on you. Remember the quote which I used to give the go for this post.

Did you ever think about what level of trust your target audience have on you, on your business and on your products?

[ Continue Reading …]

Tweet
PinIt
Email
Print

How to Install WordPress, #3 Super Fast & Easy Methods

January 16, 2014 By Shyam Chathuranga Leave a Comment

WordPress is the “So far, So Good” blogging platform available for the serious Internet Marketers. Yeah, I’m saying it again and again. Yes, there are many other alternatives to WordPress, but many people tends to use WordPress. Moreover, many internet marketers who used to play with other blogging platforms later changed their decision.

And they moved their business from those platforms to the great WordPress platform.

Another half, struggles to find a way to establish their online business using WordPress. But they still don’t know how to install WordPress. Sometimes these people worry so much of being lost in the tech world. People who have used WordPress know how it feels

[ Continue Reading …]

Tweet
PinIt
Email
Print

Asynchronous Genesis Social Share Counter WordPress Plugin

January 12, 2014 By Shyam Chathuranga 8 Comments

Genesis Social Share Counter Plugin Features & BenefitsSearch Engine Optimization is something which I truly admire in my online marketing life. Not because it helps to achieve higher search engine rankings, but because correct SEO helps search engines to make this world a better place by providing the needed things at the right time in right order.

Just after the launching of my 1st loving WordPress plugin called SEO Advicer by spending 2 whole days to develop and launch, I’ve got another idea for a perfect plugin.

This time also I thought to keep SEO in the first priority for this new plugin or let’s say my 2nd loving WordPress plugin!

[ Continue Reading …]

Tweet
PinIt
Email
Print
  • 1
  • 2
  • 3
  • 4
  • Next Page »

Start your website

HostGator 1st Month Free Coupon Code

Read Free Amazon Kindle Books

The Connections

Copyright © 2011–2025 ScorpionGod Lair™ · All Content Is Exclusive Rights Of ScorpionGod Lair.

Privacy Policy · Terms of Service · Press Lair · Archives · FAQs · IM Resources · Advertise · Sitemap

This site is owned and operated by Shyam Chathuranga Mahendra.