Last active
December 19, 2015 19:38
-
-
Save timoleinio/6007535 to your computer and use it in GitHub Desktop.
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
<?php | |
//Ylätunniste | |
get_header(); ?> | |
<div class="post hentry"> | |
<!-- Sivua ei löytynyt ilmoitus --> | |
<h1 class="entry-title">Voi ei! Hakemaasi sivua ei löydy.</h1> | |
<div class="entry-content"> | |
<p> | |
Olemme pahoillamme, sillä sivua, jota yritit hakea, ei löytynyt. Osoite on saattanut vanhentua. Voit yrittää käyttää hakua, tai etsiä tietoa alla olevan tiedon perusteella. | |
</p> | |
<div style="text-align: center;"> | |
<?php | |
get_search_form(); | |
?> | |
</div> | |
<div class="archive-page"> | |
<h4>Sivut:</h4> | |
<!-- Hae kaikki sivut --> | |
<ul> | |
<?php | |
$args = array( | |
'depth' => 0, | |
'date_format' => get_option('date_format'), | |
'child_of' => 0, | |
'echo' => 1, | |
'sort_column' => 'menu_order, post_title', | |
'post_type' => 'page', | |
'post_status' => 'publish' | |
); | |
wp_list_pages( $args ); | |
?> | |
</ul> | |
</div> | |
<div class="archive-page"> | |
<h4>Viimeisimmät artikkelit:</h4> | |
<!-- Hae kymmenen viimeisintä artikkelia --> | |
<ul> | |
<?php wp_get_archives( 'type=postbypost&limit=10' ); ?> | |
</ul> | |
<h4>Kategoriat:</h4> | |
<!-- Hae kategoriat --> | |
<ul> | |
<?php wp_list_categories( 'sort_column=name&title_li=' ); ?> | |
</ul> | |
</div> | |
</div> | |
</div> | |
<?php | |
//Alatunniste | |
get_footer(); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment