« Home « Chủ đề Thiết kế web với wordpress

Chủ đề : Thiết kế web với wordpress


Có 100+ tài liệu thuộc chủ đề "Thiết kế web với wordpress"

Tìm Hiểu về Wordpress - part 42

tailieu.vn

11.2.6 Canonical Meta Tags. To support this new functionality, WordPress now includes the following meta tag in the <head>. The presence of this tag in the <head>. If the wp_head() hook is present in your theme’s header.php template, WordPress automatically includes canonical tags on your single posts and pages. functions.php file:. 11.2.7 Post Thumbnails. A much-anticipated feature is WordPress’ new...

Tìm Hiểu về Wordpress - part 43

tailieu.vn

Custom taxonomies - Custom taxonomies are now included in the WXR export file and imported correctly.. Of course, WordPress 2.9 included many more updates, changes, fixes and patches.. WordPress 3.0 Update. One thing that people love about WordPress are all of the awesome new features rolled out with each new version, and WordPress 3.0 is no exception. WordPress has come...

Tìm Hiểu về Wordpress - part 44

tailieu.vn

No need to create a directory or edit any files.. Each new site added to the network includes its own unique Admin area and Default User, which is named according to the site address. To manage and add users for your new site (or any site in the network), click on the “Users” link in the Super Admin menu (see...

Tìm Hiểu về Wordpress - part 45

tailieu.vn

Now that we’ve learned about the major new functionality available in WordPress 3.0, let’s wrap things up by checking out some of the other improvements and features that help make version 3.0 the best update ever.... As if all that weren’t enough, WordPress 3.0 also includes the following great features to make it better than ever before!. In WordPress 3.0,...

Tìm Hiểu về Wordpress - part 3

tailieu.vn

11.2.7 Post Thumbnails. 11.2.8 Metadata API. 11.2.9 Widgetized Sidebar Descriptions. 11.2.10 Custom Post Types. 11.2.11 New Theme Templates. 11.2.12 Register Feature Support. 11.2.13 Custom Theme Directories. 11.2.14 Other Cool Changes in WordPress 2.9. 12 WordPress 3.0 Update 12.1.1 Giant Leap Forward. 12.2.1 New in WordPress 3.0. 12.2.2 Goodbye Kubrick, Hello TwentyTen. 12.2.3 Goodbye “admin”, Hello Custom Username. 12.2.4 Custom Background...

Wordpress 3.0 jQuery - part 1

tailieu.vn

Wordpress 3.0 jQuery Enhance your WordPress website with the captivating. effects of jQuery Tessa Blakeley Silver. Wordpress 3.0 jQuery Copyright © 2010 Packt Publishing All rights reserved. No part of this book may be reproduced, stored in a retrieval. permission of the publisher, except in the case of brief quotations embedded in. Every effort has been made in the preparation...

Wordpress 3.0 jQuery - part 2

tailieu.vn

Installing the WordPress plugin 127. Creating the register page using WordPress 3.0's custom menu option 130. Working with WordPress 3.0's custom menu option 132. Chapter 6: WordPress and jQuery's UI 193. Getting to know jQuery's UI plugin 194. jQuery UI plugin versions bundled in WordPress 196. Including the jQuery UI plugin features into your WordPress site 200. Including jQuery's UI...

Wordpress 3.0 jQuery - part 3

tailieu.vn

I hope you're ready for some fun and interesting insights by learning how jQuery can improve your WordPress development experience.. This book's approach and the core JavaScript language and WordPress skills that you should understand in order to gain maximum advantage from it The essential software tools that you'll need to get your project up and running. If anything in...

Wordpress 3.0 jQuery - part 4

tailieu.vn

Finally, you'll need a web browser. I strongly suggest that you use the latest stable version of the Firefox browser, available at http://mozilla.com/firefox. Now one may ask, why use Firefox? While this browser has its setbacks (like any other), on the whole, I view it as an excellent web development tool. In addition to built-in features such as the DOM...

Wordpress 3.0 jQuery - part 5

tailieu.vn

Downloading from the jQuery site. If you head over to the jQuery site at http://jquery.com , you'll find that the home page offers you two download options: production and development libraries of version 1.4.2, the most current stable version available at the time of this writing.. That's quite a bit larger, but it's much easier to open up and read...

Wordpress 3.0 jQuery - part 6

tailieu.vn

Getting Started: WordPress and jQuery. In order to get jQuery to affect your WordPress content, you're going to have to become a lot more familiar with what's going on under the hood in WordPress and your theme.. You're going to want to really focus and get a handle on understanding jQuery selectors to be able to navigate all the possible...

Wordpress 3.0 jQuery - part 7

tailieu.vn

//placed right above the wp_head function wp_enqueue_script( 'jquery'. Next, we'll need to include a separate script file into our theme that will have our custom jQuery scripts. I would like to create a directory in the theme named js where I will keep all of my JavaScripts. Inside that directory, I'll create a file and name it as custom-jquery.js. Here's...

Wordpress 3.0 jQuery - part 8

tailieu.vn

:not(selector) jQuery(".post img. :header jQuery(".post. Filters down to all elements that are headers, such as h1, h2, h3, and so on.. :first jQuery(".post :first". Filters down to the first selected element only.. :last jQuery(".post :last". Filters down to the last selected element only.. :even jQuery(".post :even". Filters down to even elements only. :odd jQuery(".post :odd". Filters down to odd elements...

Wordpress 3.0 jQuery - part 9

tailieu.vn

.css('property', 'value') jQuery(".post") .css("background",. .addClass('className') jQuery(".post"). .removeClass('className') jQuery(".post"). switch-optional) jQuery(".post"). .hasClass('className') jQuery(".post"). You don't need to denote it with a ".". jQuery(".post").addClass("sticky");. You can now see in the next screenshot that the .sticky class has been added to all the .post classes through jQuery, not WordPress!. .attr jQuery(".post"). .removeAttr jQuery(".post a"). text) jQuery(".post"). .post"). Example Syntax Description .prependTo(selector) jQuery("<b>post starts....

Wordpress 3.0 jQuery - part 10

tailieu.vn

event.target Returns the selected element the event was triggered from.. event.pageX,. event.timeStamp Returns the Unix timestamp of when the event was triggered.. jQuery(".post").click(function(event){. jQuery(this).html("event type: "+event.type+"<br/>event timestamp:. .preventDefault() jQuery(.post. functionName) jQuery(".post") .css("background",. "#f60").show("slow");. "#f60").show(200);. functionName) jQuery(".post") .slideUp('slow', function. jQuery(".post") .slideDown('slow', function(). .slideToggle() jQuery(".post") .slideToggle('slow', function(). functionName) jQuery(".post") .fadeOut ("slow", function(){//code});. functionName) jQuery(".post") .fadeIn ("slow", function(){//code});. functionName) jQuery(".post") .fadeTo ("slow", .3,...

Wordpress 3.0 jQuery - part 11

tailieu.vn

You're aware that WordPress themes control the look and feel of your site and that WordPress plugins can help your site do more, but we're going to take a look at exactly how those two components work within the WordPress system and how to use jQuery from either a theme or a WordPress plugin. In doing so, you'll be better...

Wordpress 3.0 jQuery - part 12

tailieu.vn

The Loop. through the selected elements in the wrapper for you. in fact, it's important enough to be named "The Loop". The Loop is an essential part of your WordPress theme. It displays your posts in chronological order and lets you define custom display properties with various WordPress template tags wrapped in HTML markup.. The Loop in WordPress is a...

Wordpress 3.0 jQuery - part 13

tailieu.vn

Tada! As you can see in the next screenshot, our page and sidebar navigation now look like this:. As you can see, touching up a WordPress theme is easỵ Not only can you customize your theme to look and work the way you want, you can imagine how easy it is to tweak the themés HTML markup so that your...

Wordpress 3.0 jQuery - part 14

tailieu.vn

That's it, all that's required of a jQuery plugin. Now, let's dive in to enhancing the output of our WordPress plugin with a jQuery plugin.. jQuery(this).find(obj).fadeOut("slow");. Now that we've created a jQuery plugin script, let's quickly test it out in our theme first. All we have to do is embed our new jQuery plugin named jquery.authover.js to our theme, under...

Wordpress 3.0 jQuery - part 15

tailieu.vn

For ColorBox, Jack Moore really took some time and effort to come up with five, very slick styles for the modal window, and a nice set of callback and extension functions for the more advanced developer to take advantage of. Second, all image loading for the modal window components (the transparent background, close, Next, and Back buttons) is handled entirely...