Browse
For agents
About
Insert Html Snippet
/
1.2
Insert Html Snippet
v1.2
Switch version
1.4.6
trunk
1.0
1.0.1
1.1
1.1.1
1.2
1.2.1
1.2.2
1.2.3
1.2.4
1.2.5
1.3
1.3.1
1.3.2
1.3.3
1.3.4
1.3.5
1.3.6
1.3.7
1.3.8
1.4
1.4.1
1.4.2
1.4.3
All 27 releases
Overview
Code
insert-html-snippet
/
admin
/
ajax-backlink.php
ajax-backlink.php
in Insert Html Snippet 1.2, at admin/ajax-backlink.php
14 lines
199 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
add_action
(
'
wp_ajax_ajax_backlink
'
,
'
xyz_ihs_ajax_backlink
'
)
;
3
function
xyz_ihs_ajax_backlink
(
)
{
4
5
global
$
wpdb
;
6
7
if
(
$
_POST
)
{
8
update_option
(
'
xyz_credit_link
'
,
'
ihs
'
)
;
9
10
}
11
}
12
13
14
?
>