This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@font-face { | |
font-family: Wendy; | |
src: local("Wendy"), | |
url(wendy.ttf); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$video = get_post_meta($post->ID, "video_id", true); | |
while ( $video_query->have_posts() ) : | |
$video_query->the_post(); | |
echo wp_oembed_get( 'https://vimeo.com/' . $video ); | |
endwhile; | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php $url = wp_get_attachment_url( get_post_thumbnail_id($post->ID) ); ?> | |
<header class="intro-header" style="background-image: url('<?=$url?>')"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$content = get_the_content('read more', true); | |
$content = substr($content,0,900); | |
$content = apply_filters('the_content', $content ); | |
$content = $content . '<a href="'.get_permalink().'">(Read More...)</a>'; | |
echo $content; | |
?> |
OlderNewer