|
|
|
|
LEADER |
00000cam a2200000Ia 4500 |
001 |
EBSCO_ocn807433162 |
003 |
OCoLC |
005 |
20231017213018.0 |
006 |
m o d |
007 |
cr mn||||||||| |
008 |
120821s2012 enka o 000 0 eng d |
040 |
|
|
|a HKP
|b eng
|e pn
|c HKP
|d OCLCO
|d N$T
|d OCLCQ
|d EBLCP
|d OCLCQ
|d YDXCP
|d DEBSZ
|d OCLCQ
|d FEM
|d JBG
|d AGLDB
|d ZCU
|d MERUC
|d OCLCF
|d OCLCQ
|d VTS
|d ICG
|d OCLCQ
|d OCLCO
|d STF
|d DKC
|d AU@
|d OCLCQ
|d M8D
|d OCLCQ
|d HS0
|d OCLCQ
|d OCLCO
|d OCLCQ
|
019 |
|
|
|a 968000524
|a 969066125
|
020 |
|
|
|a 9781849517690
|q (electronic bk.)
|
020 |
|
|
|a 184951769X
|q (electronic bk.)
|
020 |
|
|
|z 1849517681
|
020 |
|
|
|z 9781849517683
|
029 |
1 |
|
|a AU@
|b 000051675698
|
029 |
1 |
|
|a DEBBG
|b BV043066730
|
029 |
1 |
|
|a DEBBG
|b BV044167730
|
029 |
1 |
|
|a DEBSZ
|b 397368682
|
029 |
1 |
|
|a DEBSZ
|b 421372141
|
035 |
|
|
|a (OCoLC)807433162
|z (OCoLC)968000524
|z (OCoLC)969066125
|
050 |
|
4 |
|a TK5105.8885.W66
|b L44 2012eb
|
072 |
|
7 |
|a COM
|x 060100
|2 bisacsh
|
082 |
0 |
4 |
|a 006.7/52
|2 23
|
049 |
|
|
|a UAMI
|
100 |
1 |
|
|a Lefebvre, Yannick.
|
245 |
1 |
0 |
|a WordPress plugin development cookbook /
|c Yannick Lefebvre.
|
260 |
|
|
|a Birmingham :
|b Packt Pub.,
|c 2012.
|
300 |
|
|
|a 1 online resource (318 pages) :
|b illustrations
|
336 |
|
|
|a text
|b txt
|2 rdacontent
|
337 |
|
|
|a computer
|b c
|2 rdamedia
|
338 |
|
|
|a online resource
|b cr
|2 rdacarrier
|
347 |
|
|
|a text file
|2 rda
|
520 |
|
|
|a In Detail WordPress is a popular, powerful, and open Content Management System. Learning to extend its core capabilities allows you to unleash its full potential, whether you're an administrator who cannot find the right extension, or a developer with a great idea to enhance the platform for the community, or a website designer/developer working to fulfill a client's needs. "WordPress Plugin Development Cookbook" is the perfect companion for plugin developers, offering easy-to-follow instructions to accomplish tasks that range from basic plugin creation and configuration to advanced customization techniques. Each topic is illustrated through realistic examples showing how it can be applied to solve common problems, followed by explanations of all concepts used. Create WordPress plugins of varying complexity, from a few lines that change a specific function to complex extensions that provide intricate new capabilities. From the creation of your first simple plugin to adding entire new sections and widgets in the administration interface, learn how to change and extend WordPress to perform virtually any task. After installing and configuring an efficient plugin development environment, you will discover how to register your own callbacks that WordPress will execute at key points, forming the basis of plugin creation. Armed with this essential knowledge, you'll explore how to create administration pages to allow users to configure your new creations and to add new content management sections to WordPress through custom post types and custom database tables. Once you have all these elements in place, improve your plugins by customizing the post and page editors, creating user-facing forms to populate new content sections, making your plugin output dynamic using Javascript and AJAX as well as adding new widgets to the platform. Finally, see how to add support for multiple languages and distribute your work to the global WordPress community. "WordPress Plugin Development Cookbook" provides you with tools to create any plugin you can imagine. Approach This is a cookbook with step-by-step instructions and code examples required to learn WordPress plugin development easily. Who this book is for If you are a WordPress user, developer, or a site integrator with basic knowledge of PHP and an interest to create new plugins to address your personal needs, client needs, or share with the community, then this book is for you.
|
505 |
0 |
|
|a Cover; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Preparing a Local Development Environment; Introduction; Installing a web server on your computer; Downloading and configuring a local WordPress installation; Creating a local Subversion repository; Importing initial files to a local Subversion repository; Checking out files from a Subversion repository; Committing changes to a Subversion repository; Reverting uncommitted file changes; Viewing file history and reverting content changes to older revisions
|
505 |
8 |
|
|a Installing a dedicated code/text editorInstalling and configuring the NetBeans Integrated Development Environment; Interacting with a Subversion repository from the NetBeans interface; Managing a MySQL database server from the NetBeans interface; Chapter 2: Plugin Framework Basics; Introduction; Creating a plugin file and header; Adding output content to page headers using plugin actions; Using WordPress path utility functions to load external files and images; Modifying the page title using plugin filters; Adding text after each item's content using plugin filters
|
505 |
8 |
|
|a Inserting link statistics tracking code in page body using plugin filtersTroubleshooting coding errors and printing variable content; Creating a new simple shortcode; Creating a new shortcode with parameters; Creating a new enclosing shortcode; Loading a stylesheet to format plugin output; Writing plugins using object-oriented PHP; Chapter 3: User Settings and Administration Pages; Introduction; Creating default user settings on plugin initialization; Storing user settings using arrays; Removing plugin data on deletion; Creating an administration page menu item in the Settings menu
|
505 |
8 |
|
|a Creating a multi-level administration menuHiding items which users should not access from the default menu; Rendering the admin page contents using HTML; Processing and storing plugin configuration data; Displaying a confirmation message when options are saved; Adding custom help pages; Rendering the admin page contents using the Settings API; Accessing user settings from action and filter hooks; Formatting admin pages using meta boxes; Splitting admin code from the main plugin file to optimize site performance; Storing stylesheet data in user settings
|
505 |
8 |
|
|a Managing multiple sets of user settings from a single admin pageChapter 4: The Power of Custom Post Types; Introduction; Creating a custom post type; Adding a new section to the custom post type editor; Displaying single custom post type items using custom templates; Creating an archive page for custom post types; Displaying custom post type data in shortcodes; Adding custom categories for custom post types; Hiding the category editor from the custom post type editor; Displaying additional columns in the custom post list page; Adding filters for custom categories to the custom post list page
|
590 |
|
|
|a eBooks on EBSCOhost
|b EBSCO eBook Subscription Academic Collection - Worldwide
|
630 |
0 |
0 |
|a WordPress (Electronic resource)
|
630 |
0 |
7 |
|a WordPress (Electronic resource)
|2 fast
|0 (OCoLC)fst01796195
|
650 |
|
0 |
|a Blogs
|x Design.
|
650 |
|
0 |
|a Web sites
|x Design.
|
650 |
|
6 |
|a Sites Web
|x Conception.
|
650 |
|
7 |
|a COMPUTERS
|x Web
|x Blogs.
|2 bisacsh
|
650 |
|
7 |
|a Web sites
|x Design.
|2 fast
|0 (OCoLC)fst01173252
|
856 |
4 |
0 |
|u https://ebsco.uam.elogim.com/login.aspx?direct=true&scope=site&db=nlebk&AN=473299
|z Texto completo
|
938 |
|
|
|a EBSCOhost
|b EBSC
|n 473299
|
938 |
|
|
|a YBP Library Services
|b YANK
|n 9458658
|
994 |
|
|
|a 92
|b IZTAP
|