Create Better Content With The Block Editor. Custom Blocks for Bloggers and Content Marketers.
Get OGP and display blog card.
Simple Blog Card is a WordPress plugin that allows you to create blog cards using shortcodes or blocks. It provides options to customize the displayed title, description, and size of the OGP image. This plugin is suitable for users looking to enhance their personal blogs with visually appealing links to other content.
The plugin includes flexible customization options through template and CSS files, enabling you to tailor the appearance of the blog cards to your needs. However, users should be aware of a potential redirect loop issue under specific conditions involving multiple domains.
Best for: This plugin suits personal bloggers looking to enhance their content presentation.
What it does well
Where it falls short
Simple Blog Card offers a straightforward way to create custom blog cards, though users should be cautious of the redirect loop issue.
Katsushi Kawamori's own description of Simple Blog Card, lightly tidied.
A redirect loop occurs when all three of the following factors are met:
* When two sites with different domains embed “Simple Blog Card” for each other on their top pages.
* When two sites with different domains are on the same server (same IP address).
* When the ”Simple Blog Card” caches of two sites on different domains are empty.
/** ==================================================
* Filter for template file.
*
*/
add_filter(
'simple_blog_card_generate_template_file',
function () {
$wp_uploads = wp_upload_dir();
$upload_dir = wp_normalize_path( $wp_uploads['basedir'] );
$upload_dir = untrailingslashit( $upload_dir );
return $upload_dir . '/tmp/simpleblogcard-template.php';
},
10,
1
);
/** ==================================================
* Filter for CSS file.
*
*/
add_filter(
'simple_blog_card_css_url',
function () {
$wp_uploads = wp_upload_dir();
$upload_url = $wp_uploads['baseurl'];
if ( is_ssl() ) {
$upload_url = str_replace( 'http:', 'https:', $upload_url );
}
$upload_url = untrailingslashit( $upload_url );
return $upload_url . '/tmp/simpleblogcard.css';
},
10,
1
);
Other plugins for personal bloggers.
Create Better Content With The Block Editor. Custom Blocks for Bloggers and Content Marketers.
EleSpare provides pre-designed templates, header/footer builders, and various post layouts for creating stunni...
Easy Footnotes lets you quickly and easily add footnotes throughout your WordPress posts using a simple shortc...
WP Delicious is an SEO-optimized and Schema-friendly recipe plugin for food bloggers to create and display unl...
Displays a wealth of useful statistics about your site. Display total number of posts, pages, categories, tags...
Easily move your blog from Blogger to WordPress. Import all your content and setup 301 redirects automatically...