Jump to content

calvinklein

New Members
  • Posts

    6
  • Joined

  • Last visited

    Never

Everything posted by calvinklein

  1. Wordpress queires the database through a function wp_query. You can read about it at http://codex.wordpress.org/Function_Reference/WP_Query. You dont require to specify the database setting just fire the query using wp_query. Thus makes it simpler to use wordpress with your database. website development australia
  2. Hello, Its your hosting servers problem. You cannot do anything it yourself but just to inform them through live chat or mailing them about the problem. website development australia
  3. Try googling similar sites too understand the design required according to your theme. Start off by creating the psd and them coding it to html. Menus can be of various types.. i.e. css menus, javascript menus, jquery menus.. Pick the one that suites your needs. website design australia
  4. Use the following code to add a login form to your wordpress theme <?php if (!(current_user_can('level_0'))){ ?> <h2>Login</h2> <form action="<?php echo get_option('home'); ?>/wp-login.php" method="post"> <input type="text" name="log" id="log" value="<?php echo wp_specialchars(stripslashes($user_login), 1) ?>" size="20" /> <input type="password" name="pwd" id="pwd" size="20" /> <input type="submit" name="submit" value="Send" class="button" /> <p> <label for="rememberme"><input name="rememberme" id="rememberme" type="checkbox" checked="checked" value="forever" /> Remember me</label> <input type="hidden" name="redirect_to" value="<?php echo $_SERVER['REQUEST_URI']; ?>" /> </p> </form> <a href="<?php echo get_option('home'); ?>/wp-login.php?action=lostpassword">Recover password</a> <?php } else { ?> <h2>Logout</h2> <a href="<?php echo wp_logout_url(urlencode($_SERVER['REQUEST_URI'])); ?>">logout</a><br /> <a href="http://XXX/wp-admin/">admin</a> <?php }?> Thanks website development australia
  5. Hello, You can study the Advanced Permalink Plugin at http://wordpress.org/extend/plugins/advanced-permalinks/ that will give you an idea of how permalinks work with plugins. website development australia
  6. Hey there are different tags to display different elements in wordpress the_title() - to display the title of the post the_content() - displays content of the pst the_comment() - displays comments related to the post the_author() - displays the author name the_date() - display date of the post website development australia
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.