mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
44 lines
1.4 KiB
PHP
44 lines
1.4 KiB
PHP
<?php get_header(); ?>
|
|
|
|
<div id="content" class="widecolumn">
|
|
|
|
<h2>WordPress Multisite</h2>
|
|
<p>Bienvenida al <a href="http://mu.wordpress.org/">WordPress Multisite</a> de sindominio.</p>
|
|
<p>Desde esta página puedes:
|
|
<ul>
|
|
<li> Si ya te has registrado: <a href="wp-login.php">Loguearte</a> </li>
|
|
<li> Si todavía no te has registrado: <a href="wp-signup.php">Dáte de alta y crea tu nuevo blog</a></li>
|
|
<!--<li> Edit this file at <code>wp-content/themes/home/home.php</code> with your favourite text editor and customize this screen.</li>-->
|
|
</ul>
|
|
</p>
|
|
|
|
<p>Para dar de alta el blog debes presentarlo y solicitarlo en la lista de la asamblea de sindominio.</p>
|
|
<?php /*
|
|
<h3>The Latest News</h3>
|
|
<ul>
|
|
<strong>Site News</strong>
|
|
<?php
|
|
query_posts('showposts=7');
|
|
if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
|
|
<li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title();?> </a></li>
|
|
<?php endwhile; ?><?php endif; ?>
|
|
</ul>
|
|
<?php
|
|
$blogs = get_last_updated();
|
|
if( is_array( $blogs ) ) {
|
|
?>
|
|
<ul>
|
|
<strong>Updated Blogs</strong>
|
|
<?php foreach( $blogs as $details ) {
|
|
?><li><a href="http://<?php echo $details[ 'domain' ] . $details[ 'path' ] ?>"><?php echo get_blog_option( $details[ 'blog_id' ], 'blogname' ) ?></a></li><?php
|
|
}
|
|
?>
|
|
</ul>
|
|
<?php
|
|
}
|
|
?>
|
|
*/?>
|
|
</div>
|
|
|
|
<?php get_footer(); ?>
|