wordpress/php-fpm/wordpress_files/themes/home/home.php
2020-05-22 01:40:23 +00:00

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&aacute;gina puedes:
<ul>
<li> Si ya te has registrado: <a href="wp-login.php">Loguearte</a> </li>
<li> Si todav&iacute;a no te has registrado: <a href="wp-signup.php">D&aacute;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(); ?>