ورود به حساب

نام کاربری گذرواژه

گذرواژه را فراموش کردید؟ کلیک کنید

حساب کاربری ندارید؟ ساخت حساب

ساخت حساب کاربری

نام نام کاربری ایمیل شماره موبایل گذرواژه

برای ارتباط با ما می توانید از طریق شماره موبایل زیر از طریق تماس و پیامک با ما در ارتباط باشید


09117307688
09117179751

در صورت عدم پاسخ گویی از طریق پیامک با پشتیبان در ارتباط باشید

دسترسی نامحدود

برای کاربرانی که ثبت نام کرده اند

ضمانت بازگشت وجه

درصورت عدم همخوانی توضیحات با کتاب

پشتیبانی

از ساعت 7 صبح تا 10 شب

دانلود کتاب WordPress Plugin Development Cookbook: Explore the complete set of tools to craft powerful plugins that extend the world’s most popular CMS

دانلود کتاب کتاب آشپزی توسعه افزونه وردپرس: مجموعه کاملی از ابزارها را برای ایجاد افزونه‌های قدرتمندی که محبوب‌ترین CMS جهان را گسترش می‌دهند کاوش کنید.

WordPress Plugin Development Cookbook: Explore the complete set of tools to craft powerful plugins that extend the world’s most popular CMS

مشخصات کتاب

WordPress Plugin Development Cookbook: Explore the complete set of tools to craft powerful plugins that extend the world’s most popular CMS

ویرایش: [3 ed.] 
نویسندگان:   
سری:  
ISBN (شابک) : 9781801810777 
ناشر:  
سال نشر: 2022 
تعداد صفحات: 420 
زبان: English 
فرمت فایل : PDF (درصورت درخواست کاربر به PDF، EPUB یا AZW3 تبدیل می شود) 
حجم فایل: 3 Mb 

قیمت کتاب (تومان) : 49,000



ثبت امتیاز به این کتاب

میانگین امتیاز به این کتاب :
       تعداد امتیاز دهندگان : 9


در صورت تبدیل فایل کتاب WordPress Plugin Development Cookbook: Explore the complete set of tools to craft powerful plugins that extend the world’s most popular CMS به فرمت های PDF، EPUB، AZW3، MOBI و یا DJVU می توانید به پشتیبان اطلاع دهید تا فایل مورد نظر را تبدیل نمایند.

توجه داشته باشید کتاب کتاب آشپزی توسعه افزونه وردپرس: مجموعه کاملی از ابزارها را برای ایجاد افزونه‌های قدرتمندی که محبوب‌ترین CMS جهان را گسترش می‌دهند کاوش کنید. نسخه زبان اصلی می باشد و کتاب ترجمه شده به فارسی نمی باشد. وبسایت اینترنشنال لایبرری ارائه دهنده کتاب های زبان اصلی می باشد و هیچ گونه کتاب ترجمه شده یا نوشته شده به فارسی را ارائه نمی دهد.


توضیحاتی درمورد کتاب به خارجی



فهرست مطالب

Cover
Title Page
Copyright and Credits
Dedication
Contributors
Table of Contents
Preface
Chapter 1: Preparing a Local Development Environment
	Technical requirements
	Installing a local web server on your computer
		How to do it…
		How it works…
		There's more…
	Creating a local version control repository
		How to do it…
		How it works…
		There's more…
	Installing a dedicated code editor/text editor
		Getting ready
		How to do it…
		How it works…
		There's more…
Chapter 2: Plugin Framework Basics
	Technical requirements  
	Creating a plugin file and header
		Getting ready
		How to do it...
		How it works...
		See also
	Adding output content to page headers using plugin actions
		How to do it...
		How it works...
		There's more...
		See also
	Using WordPress path utility functions to load external files and images
		How to do it...
		How it works...
		There's more...
		See also
	Modifying the site generator meta tag using plugin filters
		How to do it...
		How it works...
		There's more...
		See also
	Adding text after each item's content using plugin filters
		How to do it...
		How it works...
		There's more...
		See also
	Inserting link tracking code in the page body using plugin filters
		Getting ready
		How to do it...
		How it works...
		See also
	Troubleshooting coding errors and printing variable content
		How to do it...
		How it works...
		There's more...
		See also
	Creating a new simple shortcode
		How to do it...
		How it works...
		See also
	Creating a new shortcode with parameters
		How to do it...
		How it works...
		See also
	Creating a new enclosing shortcode
		How to do it...
		How it works...
		See also
	Loading a style sheet to format plugin output
		Getting ready
		How to do it...
		How it works...
		See also
	Writing plugins using object-oriented PHP
		Getting ready
		How to do it...
		How it works...
		There's more…
		See also
Chapter 3: User Settings and Administration Pages
	Technical requirements
	Creating default user settings on plugin initialization
		How to do it...
		How it works...
		There's more...
		See also
	Storing user settings using arrays
		Getting ready
		How to do it...
		How it works...
		See also
	Removing plugin data on deletion
		Getting ready
		How to do it...
		How it works...
		See also
	Creating an administration page menu item in the settings menu
		Getting ready
		How to do it...
		How it works...
		There's more...
		See also
	Creating a multi-level administration menu
		How to do it...
		How it works...
		There's more…
		See also
	Rendering the admin page contents using HTML
		Getting ready
		How to do it...
		How it works...
		There's more...
		See also
	Processing and storing plugin configuration data
		Getting ready
		How to do it...
		How it works...
		See also
	Displaying a confirmation message when options are saved
		Getting ready
		How to do it...
		How it works...
		See also
	Adding custom help pages
		Getting ready
		How to do it...
		How it works...
		See also
	Rendering the admin page contents using the Settings API
		How to do it...
		How it works...
		There's more...
		See also
	Accessing user settings from action and filter hooks
		Getting ready
		How to do it...
		How it works...
		See also
	Formatting admin pages using meta boxes
		Getting ready
		How to do it...
		How it works...
		See also
	Splitting admin code from the main plugin file to optimize site performance
		Getting ready
		How to do it...
		How it works...
		See also
	Storing style sheet data in user settings
		Getting ready
		How to do it...
		How it works...
		See also
	Managing multiple sets of user settings from a single admin page
		Getting ready
		How to do it...
		How it works...
		See also
	Creating a network-level plugin with admin pages
		Getting ready
		How to do it...
		How it works...
		See also
Chapter 4: The Power of Custom Post Types
	Technical requirements
	Creating a custom post type
		Getting ready
		How to do it...
		How it works...
		There's more...
		See also
	Adding a new section to the custom post type editor
		Getting ready
		How to do it...
		How it works...
		See also
	Displaying single custom post type items using a custom layout
		Getting ready
		How to do it...
		How it works...
		See also
	Tailoring search output for custom post type items
		Getting ready
		How to do it…
		How it works…
		See also
	Displaying custom post type data in shortcodes
		Getting ready
		How to do it...
		How it works...
		See also
	Adding custom categories for custom post types
		Getting ready
		How to do it...
		How it works...
		See also
	Adding custom fields to categories
		Getting ready
		How to do it...
		How it works...
		See also
	Hiding the category editor from the custom post type editor
		Getting ready
		How to do it...
		How it works...
		See also
	Displaying additional columns in the custom post list page
		Getting ready
		How to do it...
		How it works...
		See also
	Adding filters for custom categories to the custom post list page
		Getting ready
		How to do it...
		How it works...
		See also
	Adding Quick Edit fields for custom categories
		Getting ready
		How to do it...
		How it works...
	Updating the page title to include custom post data using plugin filters
		Getting ready
		How to do it...
		How it works...
Chapter 5: Customizing Post and Page Editors
	Technical requirements
	Capturing and displaying information using custom meta boxes
		Getting ready
		How to do it...
		How it works...
		There's more...
	Displaying custom post data using filter functions
		Getting ready
		How to do it...
		How it works...
		See also
	Hiding the Custom Fields section in the post editor
		Getting ready
		How to do it...
		How it works...
	Extending the post editor to attach custom files with the media uploader
		Getting ready
		How to do it...
		How it works...
		See also
Chapter 6: Extending the Block Editor
	Technical requirements
	Setting up a block development environment and creating a simple block
		Getting ready
		How to do it...
		How it works...
		There's more...
		See also
	Creating an editable blockquote block
		Getting ready
		How to do it...
		How it works...
		See also
	Creating a new WordPress REST endpoint
		Getting ready
		How to do it...
		How it works...
		See also
	Creating a server-side rendering block that leverages an existing shortcode
		Getting ready
		How to do it...
		How it works...
		See also
Chapter 7: Accepting User Content Submissions
	Technical requirements
	Creating a client-side content submission form
		Getting ready
		How to do it...
		How it works...
		See also
	Saving user-submitted content in custom post types
		Getting ready
		How to do it...
		How it works...
		There's more...
		See also
	Sending email notifications upon new submissions
		Getting ready
		How to do it...
		How it works...
		See also
	Implementing a CAPTCHA on user forms using an online service
		Getting ready
		How to do it...
		How it works...
		See also
	Using a local library to implement a CAPTCHA on user forms
		Getting ready
		How to do it...
		How it works...
		See also
Chapter 8: Customizing User Data
	Technical requirements
	Adding custom fields to the user editor
		Getting ready
		How to do it...
		How it works...
		See also
	Processing and storing custom user data
		Getting ready
		How to do it...
		How it works...
		See also
	Displaying new user data on the user list page
		Getting ready
		How to do it...
		How it works...
		See also
	Using custom user data in an enclosing shortcode
		Getting ready
		How to do it...
		How it works...
		See also
Chapter 9: Leveraging JavaScript, jQuery, and AJAX Scripts
	Technical requirements
	Safely loading jQuery onto WordPress web pages
		Getting ready
		How to do it...
		How it works...
		There's more...
	Displaying a pop-up dialog using the built-in ThickBox plugin
		Getting ready
		How to do it...
		How it works...
		There's more...
	Controlling pop-up dialog display using shortcodes
		Getting ready
		How to do it...
		How it works...
		See also
	Displaying a calendar day selector using the Datepicker plugin
		Getting ready
		How to do it...
		How it works...
	Adding tooltips to admin page form fields using the TipTip plugin
		Getting ready
		How to do it...
		How it works...
		See also
	Using AJAX to dynamically update partial page contents
		Getting ready
		How to do it...
		How it works...
		See also
Chapter 10: Adding New Widgets to the WordPress Library
	Technical requirements
	Creating a new widget in WordPress
		Getting ready
		How to do it...
		How it works...
		See also
	Displaying widget configuration options
		Getting ready
		How to do it...
		How it works...
		See also
	Validating widget configuration options
		Getting ready
		How to do it...
		How it works...
		See also
	Adding a custom dashboard widget
		Getting ready
		How to do it...
		How it works...
		See also
	Adding a custom widget to the network dashboard
		Getting ready
		How to do it...
		How it works...
		See also
Chapter 11: Fetching, Caching, and Regularly Updating External Site Data
	Technical requirements
	Displaying RSS items from an external feed
		Getting ready
		How to do it…
		How it works...
		There's more…
		See also
	Optimizing plugin performance by storing external data using transients
		Getting ready
		How to do it...
		How it works...
		See also
	Scheduling plugin data updates using WP-Cron
		Getting ready
		How to do it...
		There's more…
		See also
Chapter 12: Enabling Plugin Internationalization
	Technical requirements
	Changing the WordPress site language configuration
		Getting ready
		How to do it...
		How it works...
	Adapting default user settings for translation
		Getting ready
		How to do it...
		How it works...
		See also
	Making admin page code ready for translation
		Getting ready
		How to do it...
		How it works...
		See also
	Modifying shortcode output for translation
		Getting ready
		How to do it...
		How it works...
		See also
	Translating text strings using Poedit
		Getting ready
		How to do it...
		How it works...
		There's more...
		See also
	Loading a language file in the plugin initialization
		Getting ready
		How to do it...
		How it works...
		There's more...
		See also
Chapter 13: Distributing Your Plugin on WordPress.org
	Technical requirements
	Creating a README file for your plugin
		Getting ready
		How to do it...
		How it works...
		There's more...
	Applying for your plugin to be hosted on WordPress.org
		How to do it...
		How it works...
		See also
	Uploading your plugin using Subversion
		Getting ready
		How to do it...
		How it works...
		There's more...
		See also
	Providing plugin banner and thumbnail images
		Getting ready
		How to do it...
		How it works...
		See also
Index
About Packt
Other Books You May Enjoy




نظرات کاربران