Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- * Template Name: Lucas - Test Template
- * See the codex entry on custom template for more information: http://codex.wordpress.org/Page_Templates#Custom_Page_Template
- *
- * Add html above or below the_content inside the comments
- * Add php snippets as well with their own opening and closing php
- */
- global $avia_config, $post;
- if ( post_password_required() )
- {
- get_template_part( 'page' ); exit();
- }
- /*
- * get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.
- */
- get_header();
- if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title();
- ?>
- <div class='container_wrap container_wrap_first main_color <?php avia_layout_class( 'main' ); ?>'>
- <div class='container'>
- <main class='template-page content <?php avia_layout_class( 'content' ); ?> units' <?php avia_markup_helper(array('context' => 'content','post_type'=>'page'));?>>
- <!--Custom html above the visual editor content-->
- <!--End /above custom html content-->
- <?php
- $avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
- get_template_part( 'includes/loop', 'page' );
- ?>
- <!--end content-->
- <!--Custom html below the visual editor content-->
- <?php echo "Hello World Test - I just applied this code at the moment"; ?>
- <br />
- <select id="list">
- <option value="audi">Audi</option>
- <option value="bmw">BMW</option>
- <option value="mb">Mercedes</option>
- <option value="fo">Ford</option>
- <option value="fi">Fiat</option>
- <option value="op">Opel</option>
- <option value="vw">VW</option>
- <option value="wn">Was noch?</option>
- </select>
- <script>
- function getSelectValue()
- {
- var selectedValue = document.getElementById("List").value;
- console.log(selectedValue);
- }
- getSelectValue();
- </script>
- <!--End /below custom html content-->
- </main>
- <?php
- //get the sidebar if the page options want it
- $avia_config['currently_viewing'] = 'page';
- get_sidebar();
- ?>
- </div><!--end container-->
- </div><!-- close default .container_wrap element -->
- <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment