-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeatured-snippet.php
33 lines (27 loc) · 1.04 KB
/
featured-snippet.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
/*
Plugin Name: Featured-Snippet-Shortcode
Description: Use [featured_snippet image="Image URL" image_alt="Alt-Attribute for your image"]Your content for the featured snippet[/featured_snippet] to display a little featured snippet box in your content area.
Author: TechnicalSEO.de, André Goldmann
Author URI: https://www.technicalseo.de
Version: 1.0
*/
if ( !class_exists('WP') ) {
header('Status: 403 Forbidden');
header('HTTP/1.1 403 Forbidden');
exit();
}
function featured_snippet_function() {
echo '<link rel="stylesheet" href="'.plugins_url('', __FILE__).'/featured-snippet.css" type="text/css" media="screen" />';
}
add_action( 'wp_head' , 'featured_snippet_function',40);
function featured_snippet_shortcode( $atts, $content = null ) {
$atts = shortcode_atts(
array(
'image' => '',
'image_alt' => '',
),
$atts);
return '<div class="featured_snippet"><img src="' . $atts['image'] . '" alt="' . $atts['image_alt'] . '" /><p>' . $content . '</p></div>';
}
add_shortcode( 'featured_snippet', 'featured_snippet_shortcode' );