sandywp / plugins / simple-blog-card
Simple Blog Card
Get OGP and display blog card.
Ready in seconds.
v2.38 3,000+ installs WP 6.6+ PHP 8.0+

What you get inside
5 screens-
View
-
View2
-
Block
-
Block search
-
Settings
About this plugin
Blog card
- Generated with shortcode
- Generated with block
- Can specify the number of characters displayed in the description.
- Displays an ogp image.
- Can specify the size of the displayed ogp image.
- Can change the title and description.
Warning
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.
How it works
Customize
- Template files allow for flexible customization.
- The default template file is template/simpleblogcard-template.php. Using this as a reference, you can specify a separate template file using the filters below.
/** ==================================================
* 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
);
- CSS files can be set separately. Please see the filters below.
/** ==================================================
* 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
);
sandywp / also on the shelf
Try another plugin
Spectra Legacy – Gutenberg Blocks
4.7 · 1M+ installs
Gutenberg blocks for existing Spectra websites. Maintained, stable, and fully supported — no action needed on your part.
4.6 · 800K+ installs
Adds breadcrumb navigation showing the visitor's path to their current location.
PDF Embedder – PDF Viewer & Embed PDF Files for WordPress
4.7 · 300K+ installs
Embed PDF files in WordPress posts and pages with a responsive PDF viewer block, live Block Editor preview, and no third-party…
Spin up a real WordPress site in seconds.
Test plugins, build a demo, hand a client a link — then squash it and start again. No local setup, no Docker.