Into the
wp_w3all.php file, which i thought about just these days, thinking how to make it very easy to understand, since the logic is very basic, and it will be done very soon, separating the code to be more clear,
there is this line:
Code: Select all
if ( defined( 'WP_ADMIN' ) && !isset($w3deactivate_wp_w3all_plugin) )
{
inside this statement there are all the hooks and functions about the code that run
when WordPress is accessed into WP admin.
then there is this line, the
else that wrap the code that run instead when WP is accessed into the front end:
so, some hooks and functions fires only when you are on front end or into the back end of the site.
Out of the
if else statement into the wp_w3all.php file there are (bottom of the file) several functions, some even not used or obsolete. These can be called on front or back end, or are about WP multisite.
Into the TOP of the file, there is the code that just run to setup all required values assigning main vars when the plugin code execute.
The code do not follow the same semantic but would be quite easy to be understood and time by time will be improved.
ps. example:
the WP default login page, is WP admin, along with the WP administration.
While a WP page or post, that can be a wp-members login page built with his login shortcode,
is NOT WP admin, it is the front end (where it run).
Into the [b]wp_w3all.php[/b] file, which i thought about just these days, thinking how to make it very easy to understand, since the logic is very basic, and it will be done very soon, separating the code to be more clear,
[b]there is this line[/b]:
[code]if ( defined( 'WP_ADMIN' ) && !isset($w3deactivate_wp_w3all_plugin) )
{[/code]
inside this statement there are all the hooks and functions about the code that run [b]when WordPress is accessed into WP admin[/b].
then there is this line, the [b]else[/b] that wrap the code that run instead when WP is accessed into the front end:
[code]} else { // not in WP admin[/code]
so, some hooks and functions fires only when you are on front end or into the back end of the site.
Out of the [b][i]if else[/i][/b] statement into the wp_w3all.php file there are (bottom of the file) several functions, some even not used or obsolete. These can be called on front or back end, or are about WP multisite.
Into the TOP of the file, there is the code that just run to setup all required values assigning main vars when the plugin code execute.
The code do not follow the same semantic but would be quite easy to be understood and time by time will be improved.
ps. example:
the WP default login page, is WP admin, along with the WP administration.
While a WP page or post, that can be a wp-members login page built with his login shortcode, [b]is NOT WP admin[/b], it is the front end (where it run).