This file contains hidden or 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
| export default { | |
| /* | |
| ** Nuxt rendering mode | |
| ** See https://nuxtjs.org/api/configuration-mode | |
| */ | |
| /* | |
| ** Nuxt target | |
| ** See https://nuxtjs.org/api/configuration-target | |
| */ |
This file contains hidden or 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
| <div id="root"> | |
| <!-- This element's contents will be replaced with your component. --> | |
| </div> |
This file contains hidden or 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
| var d = new Date(); | |
| var mth = d.getMonth() + 1; | |
| var str1; | |
| if (mth == 11) { | |
| str1 = '//localhost/wordpress/wp-content/uploads/2015/11/'; | |
| } | |
| else if (mth == 12) { | |
| str1 = '//localhost/wordpress/wp-content/uploads/2015/12/'; | |
| } |
This file contains hidden or 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
| /*Display Youtube Link*/ | |
| add_filter('the_content', 'add_my_content'); | |
| function add_my_content($content) { | |
| $my_custom_text = get_post_meta(get_the_ID(), 'youtube_link', $single = true); | |
| $embed_code = wp_oembed_get($my_custom_text, array('width'=>720, 'height'=>420)); | |
| if ($my_custom_text) { | |
| $content .= $embed_code; | |
| $content .= '<p></p>'; |
NewerOlder