Coder Social home page Coder Social logo

sergioerramuzpe / wordpress-web-application-development-third-edition Goto Github PK

View Code? Open in Web Editor NEW

This project forked from rutujav1129/wordpress-web-application-development-third-edition

0.0 0.0 0.0 109 KB

Code files uploaded by Packt

License: MIT License

JavaScript 1.38% PHP 94.78% CSS 3.84%

wordpress-web-application-development-third-edition's Introduction

Wordpress Web Application Development - Third Edition

This is the code repository for Wordpress Web Application Development - Third Edition, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish.

About the Book

The rise of WordPress-powered websites is one of the standout trends in the modern web development world. WordPress has taken over 25% of all the websites in the world. The power of the plugin-based architecture and the flexibility of the built-in features offered by WordPress has made developers use this framework for advanced web development. The official plugin directory contains over forty thousand plugins, covering most of the areas required in application development. Therefore, WordPress becomes one of the top solutions for rapid application development with existing plugins. This book will act as a comprehensive resource for building web applications with this amazing framework.

Instructions and Navigation

All of the code is organized into folders. Each folder starts with a number followed by the application name. For example, Chapter02.

The code will look like the following:

add_action('pre_get_posts', 'search_restrictions');
 function search_restrictions($query) {
 if($query->is_search && $query->is_main_query() && !is_admin()){
 $search_blocked_ids = array('24','100');
 $search_allowed_types = array('wpwaf_topic','wpwaf_forum');
 $query->set('post__not_in', $search_blocked_ids );
 $query->set('post_type', $search_allowed_types );
 }
 return $query;
 }

Technically, you need a computer, browser, and an Internet connection with the following working environment: The Apache web server PHP Version 5.4 or higher WordPress Version 4.7.2 MySQL Version 5.6 or higher Once you have the preceding environment, you can download the Responsive theme from http://wordpress. org/themes/responsiveand activate it from the Themes section. Finally, you can activate the plugin developed for this book to get things started. Refer to Appendix A, Configurations, Tools, and Resources, for the application setup guide, required software, and plugins.

Related Products

Suggestions and Feedback

Click here if you have any feedback or suggestions.

wordpress-web-application-development-third-edition's People

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.