-
Notifications
You must be signed in to change notification settings - Fork 184
/
Copy pathfacebook-meta.php
57 lines (50 loc) · 3.04 KB
/
facebook-meta.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php if (is_single() or is_page('utvarp') or is_page('lemurskort') or is_page('timalina')) { ?>
<?php
$src = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'myndin' );
$src = $src[0];
if ( is_page('utvarp') ) {
$desc = 'Útvarp Lemúr geymir útvarpsþætti Lemúrsins.';
} else if ( is_page('lemurskort') ) {
$desc = 'Á Lemúrskortinu geta menn flakkað heimshornanna á milli.';
} else if ( is_page('timalina') ) {
$desc = 'Með Tímalínu Lemúrsins getur þú flakkað í gegnum tímann.';
}
?>
<meta property="og:title" content="<?php single_post_title(''); ?>">
<meta property="og:site_name" content="Lemúrinn">
<meta property="og:type" content="article">
<meta property="fb:app_id" content="186476388086986">
<meta property="og:image" content="<?php echo $src ?>">
<meta property="og:description" content="<?php echo $desc ?>">
<meta property="og:url" content="<?php the_permalink() ?>">
<meta property="article:published_time" content="<?php the_time('c'); ?>">
<link rel="image_src" href="<?php echo $src ?>">
<?php } else if (is_archive() or is_page('greinasafn')) { ?>
<?php
$src = '';
$desc = 'Greinasafn Lemúrsins er fullt af skemmtilegu efni. ';
if ( is_archive() and is_tag() ) {
$src = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'myndin' );
$src = $src[0];
$desc .= sprintf('Hérna eru greinar í flokknum „%s“.', single_tag_title('', false) );
}
?>
<meta property="og:title" content="<?php echo wp_title(); ?>">
<meta property="og:site_name" content="Greinasafn Lemúrsins">
<meta property="og:type" content="website">
<meta property="fb:app_id" content="186476388086986">
<!--<meta property="og:image" content="<?php echo $src ?>">-->
<meta property="og:description" content="<?php echo $desc; ?>">
<meta property="og:url" content="<?php echo home_url(add_query_arg(array(),$wp->request)); ?>">
<!--<link rel="image_src" href="<?php echo $src ?>">-->
<?php } else { ?>
<meta property="og:title" content="<?php echo wp_title(); ?>">
<meta property="og:site_name" content="Lemúrinn">
<meta property="og:type" content="website">
<meta property="fb:app_id" content="186476388086986">
<meta property="og:image" content="<?php echo get_template_directory_uri() ?>/assets/images/lemur-fb-icon-highres.jpg">
<meta property="og:description" content="Lemúrinn er veftímarit um allt. Furður, fjarlægir staðir, menning, saga, tónlist, blogg, morð, ofbeldi og fleira.">
<meta property="og:url" content="<?php echo home_url(add_query_arg(array(),$wp->request)); ?>">
<link rel="image_src" href="<?php echo get_template_directory_uri() ?>/assets/images/lemur-fb-icon-highres.jpg">
<?php } ?>
<meta property="og:locale" content="is_IS">