current location:Home > Technical Articles > CMS Tutorial > WordPress
- Direction:
- All web3.0 Backend Development Web Front-end Database Operation and Maintenance Development Tools PHP Framework Common Problem Other Tech CMS Tutorial Java System Tutorial Computer Tutorials Hardware Tutorial Mobile Tutorial Software Tutorial Mobile Game Tutorial
- Classify:
-
- Embark on a WordPress 3.5 Adventure
- Hopefully, all your WordPress installations so far have been successfully upgraded to version 3.4. One of the most exciting things about a release is getting to work on the next one! Below is a sneak preview of what was discussed in the latest WordPress 3.5 development chat scoping session. First, an important note that all the information discussed in this week’s WordPress Developer Chat is still extremely tentative. So even though a specific feature or change might be talked about, it might not actually come to WordPress 3.5, or it might end up being different than what was originally discussed. So when WordPress 3.5 is released, if it doesn't look like what I'm going to talk about... you've been warned
- WordPress 1069 2023-08-29 16:57:08
-
- Rarely Used jQuery Selectors
- Selectors are crucial. Most jQuery methods require some kind of element selection to work. For example, attaching a click event to a button requires you to first select the button. Since common jQuery selectors are based on existing CSS selectors, you're probably very familiar with them. However, there are some selectors that are not widely used. In this tutorial, I'll focus on these lesser-known but important selectors. All Selector (*) This selector is correctly called a universal selector because it selects all elements in the document, including, class="inline">,*").find("li") is better than $(&qu
- WordPress 1657 2023-08-29 15:25:02
-
- Free WordPress video player plugin
- Video has become an important part of many major websites. This is because video provides a more immersive user experience than text, images, or audio. Additionally, video may be a better medium for some content, such as software or development tutorials. If you plan to add videos to your website but can't find the right plugin, this article will help you. I’m going to give you a brief overview of five popular and free WordPress video player plugins. Before I continue, I should mention that free plugins may not offer all the features your website needs. You can also take a look at these premium WordPress video player plugins from CodeCanyon that provide more features and beautiful UI to your users. Also, if you start from C
- WordPress 2483 2023-08-29 15:13:13
-
- Live chat using NodeJS, Socket.io and ExpressJS
- NodeJS enables me to write backend code in one of my favorite languages: JavaScript. It is the perfect technology for building real-time applications. In this tutorial, I will show you how to build a web chat application using ExpressJS and Socket.io. Setting Up the Environment Of course, the first thing to do is to install NodeJS on your system. If you are a Windows or Mac user, you can visit nodejs.org and download the installer. If you prefer Linux, I recommend you to refer to this link. While I won't go into detail on this, if you run into any installation issues I'd be happy to help; just leave a comment below this article. After installing NodeJS,
- WordPress 1235 2023-08-29 12:49:14
-
- Efficiently use KUTE.js for animation: Part 3, SVG animation
- The previous tutorial in this series showed you how to animate different CSS properties of any element using KUTE.js. However, the core engine does not allow you to animate properties specific to SVG elements. Likewise, you cannot use strokes to animate SVG deformations of different path shapes or the drawing of different SVG elements. You must use the KUTE.jsSVG plugin to accomplish these tasks. Before you begin, remember that you must include the KUTE.js core engine and the SVG plugin for the examples in this tutorial to work properly. Morphing SVG Shapes Morphing one SVG shape into another is a very common feature you will come across. The KUTE.jsSVG plug-in provides us with the ability to easily create custom
- WordPress 2022 2023-08-29 12:33:16
-
- Host WordPress website on Google App Engine
- While WordPress started out as just a blogging platform, it has evolved into a complete content management system that provides users with the ability to create and publish content. Publish great websites and blogs. The plugin database is one of the largest and continues to grow. The simplicity of the largest WordPress engine is very attractive to me. It takes very little to get up and running a blog powered by WordPress. As simple as it sounds, minimal does not mean that it cannot be modified or requested according to your own preferences. You can turn your WordPress-powered website into a photo blog, a professional online portfolio, a news website, an online community, or even an online e-commerce store. You are only limited by your imagination when using it
- WordPress 1839 2023-08-29 11:33:01
-
- Create a responsive design sliding side navigation menu
- In this tutorial, you will create an expandable side navigation menu using JavaScript and CSS. The final product looks like the image below: 1. Create Markup First, let’s add some markup for the side menu: <divid="sideNavigation" class="sidenav"><ahref="#"class="close-btn">× </a><ahref="#">About</a&
- WordPress 1323 2023-08-29 09:01:02
-
- Localize stimulus applications using I18Next
- In my previous article, I introduced Stimulus - a simple JavaScript framework created by Basecamp. Today I will discuss internationalization of Stimulus applications, since the framework does not provide any internationalization tools out of the box. Internationalization is an important step, especially when your application is used by people around the world, so a basic understanding of how to do internationalization can really come in handy. Of course, it's up to you to decide which internationalization solution to implement, whether it's jQuery.I18n, Polyglot, or something else. In this tutorial I want to show you a popular I18n framework called I18next which has many cool features and
- WordPress 1714 2023-08-28 23:53:07
-
- JavaScript array conversions and transformations
- Arrays are a fundamental and powerful data structure in programming. Their power comes not just from the ability to store multiple objects or values. They also expose a variety of tools that make it easy to manipulate and use the data they contain. We often need to change arrays to meet specific needs. For example, you may need to reorganize the objects in an array so that it is ordered by the value of a specific property, or you may need to merge multiple arrays into a single array. In many cases, you may need to completely convert an array of objects into another array of completely different objects. In this tutorial, you'll learn about the tools JavaScript provides for merging, copying, transforming, and filtering arrays. However, before I begin, I must point out that although I use the terms "merge", "transform"
- WordPress 1195 2023-08-28 23:41:10
-
- Mastering JavaScript: Part 3, Exploring Loops
- Suppose your task is to write a program that displays the numbers 1 to 100. One way to accomplish this is to write 100 console.log() statements. But I'm sure you won't, because you'll get tired of line nine or line ten. The only part that changes in each statement is the number, so there should be a way to write only one statement. There are also loops. Loops let us repeat a set of steps within a block of code. While Loop Do-While Loop For Loop Array For-Of Loop For-In Loop While Loop A While Loop repeatedly executes a set of statements when some condition evaluates to true. When the condition is false, the program exits the loop. This kind of loop tests a condition before executing the iteration. Iteration is a loop
- WordPress 1464 2023-08-28 22:37:09
-
- An exciting coffee break course introducing Angular Controllers
- AngularJS has become the framework of choice for many web developers. It is an all-in-one solution for quickly building front-end single-page web applications. However, one trade-off is that we have to address the limitations of the system. One of them is communication difficulties between controllers. We've just launched a new coffee break course called "Sharing Data Between Angular Controllers". Our coffee break courses are super short courses designed to teach a new skill or concept in one go, in this course EnvatoTuts+ instructor Reggie Dawson will show you some simple techniques for sharing data between Angular controllers. You'll learn how to pass data through services, and you'll also learn about passing parameters and router state
- WordPress 1409 2023-08-28 22:09:06
-
- Explore the HTML5 Page Visibility API
- Earlier our browsers did not have tabbed browsing feature but today when you look at all available browsers we can see that all browsers offer this feature. As a programmer, I usually have 10-15 tabs open at a time, and sometimes this number exceeds 25-30. Why use this API? Previously, there was no way to determine which tab was active and which tab was active, but with the help of HTML5VisibilityAPI we can detect if a visitor is viewing our web page. In this tutorial, we will look at how to deal with the HTML5Visibility API along with a simple demonstration to discover the state of the page. In this demo we will base the page on what is visible
- WordPress 1288 2023-08-28 19:33:06
-
- Efficient text animation with KUTE.js: Part 4, Text animation
- In the second tutorial in this series, you learned how to use KUTE.js to animate different CSS properties of elements on a web page. You learned how to animate all transform properties, as well as properties such as border-radius and border-color. You can also use CSS plugins to animate CSS properties such as font-size, line-height, letter-spacing, and word spacing. KUTE.js also has a text plugin that allows you to animate text within different elements by increasing or decreasing numbers like countdowns or writing strings character by character. In this tutorial, you will learn how to use the CSS and text plugins in KUTE.js for
- WordPress 903 2023-08-28 18:05:11
-
- Quick tip: A closer look at jQuery - Grep
- In the latest episode of "Anatomy of jQuery," we'll lift the lid on $.grep and see exactly what's going on behind the scenes. Subscribe to our YouTube page to watch all video tutorials! jQuery source of grep //jQuerysourceforthegrepmethodgrep:function(elems,callback,inv){varret=[];//Gothroughthearray,onlysavingtheitems//thatpassthevalidatorfunctionfor(vari=0,length=elems.l
- WordPress 1461 2023-08-28 17:49:10
-
- Starting with Backbone.js
- Unlike its web development counterparts, JavaScript has never really provided structure in the form of a framework. Thankfully, in recent years, this has begun to change. Today I'd like to introduce you to Backbone.JS, a cute little library that makes the process of creating complex, interactive, and data-driven applications much easier. It provides a clean way to separate data from presentation. Backbone.JS Overview Created by Jeremy Ashkenas, the JS ninja who built CoffeeScript, Backbone is an ultra-lightweight library that allows you to create easy-to-maintain frontends. It is backend agnostic and works with any modern Java you already use
- WordPress 1496 2023-08-28 15:41:08