Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
WordPress 3.7 Complete: Third Edition

You're reading from   WordPress 3.7 Complete: Third Edition Nothing has simplified website production quite as effectively as WordPress, and this book makes it easier still to build a fully featured site of your own. Packed with screenshots and clear instructions, it covers everything you need for success.

Arrow left icon
Product type Paperback
Published in Nov 2013
Publisher Packt
ISBN-13 9781782162407
Length 404 pages
Edition 4th Edition
Concepts
Arrow right icon
Toc

Table of Contents (14) Chapters Close

Preface 1. Introducing WordPress 2. Getting Started FREE CHAPTER 3. Creating Blog Content 4. Pages, Menus, Media Library, and More 5. Plugins and Widgets 6. Choosing and Installing Themes 7. Developing Your Own Theme 8. Feeds, Podcasting, and Offline Blogging 9. Developing Plugins and Widgets 10. Community Blogging 11. Creating a Non-blog Website Part One – The Basics 12. Creating a Non-blog Website Part Two – Community Websites and Custom Content Elements Index

Conventions

In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.

Code words in text are shown as follows: "For instance, using the <p> tags is not necessary in the text editor, as they will be stripped by default."

A block of code is set as follows:

// ** MySQL settings ** //
define('DB_NAME', 'wptestblog');  
define('DB_USER', 'localdbuser');  
define('DB_PASSWORD', '62dcx%^_0hnm');
define('DB_HOST', 'localhost');

When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:

<div class="post post-item">
  <div class="post-title">
    <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
  </div>
  
  <?php if(has_post_thumbnail()) : ?>
    <div class="post-image alignleft">
      <?php echo '<a href="'.esc_url(get_permalink()).'" >'.get_the_post_thumbnail($post->ID, 'thumbnail').'</a>'; ?>
  </div>
  <?php endif; ?>
  
  <div class="entry clearfix">
    <p><em>by <?php echo get_post_meta($post->ID, 'book_author', true); ?></em></p>
    <?php the_excerpt(); ?>
  </div>
</div><!-- /.post-item -->

New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "To add a new page, go to your WP Admin and navigate to Pages | Add New".

Note

Warnings or important notes appear in a box like this.

Tip

Tips and tricks appear like this.

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image