WordPress help - Ask your questions

Status
Not open for further replies.
this is my code
Ok, try these steps:

Go to theme editor, open functions.php file and add this to the end:

PHP:
function the_slug(){
$blog_url = get_bloginfo('url');  
$slug = basename(get_permalink());  
do_action('before_slug', $slug);  
$slug = apply_filters('slug_filter', $slug);  
if( $echo ) echo $slug;  
do_action('after_slug', $slug);  
echo $blog_url. '/' . $slug;
}

Now replace your code with this one:

PHP:
<?php
function email_members($post_id) {
$linkddd = the_slug();

mail('[email protected]', 'My Subject', $linkddd );

}

add_action('publish_post', 'email_members');

?>

Let me know if it works :)
 
Hi, i want help monetizing my wordpress blog, i cant create a adsense account the Google page doesnt load, how else can i monetize ir.
 
Last edited:
Hi, i want help monetizing my wordpress blog, i cant create a adsense account the Google page doesnt load, how else can i monetize ir.
What niche is your blog?
 
I'm using the Quest theme but i can't figure out how to remove the Twitter and Popular posts sidebars 0.o
They came with the theme and don't appear on my widgets page
 
I'm using the Quest theme but i can't figure out how to remove the Twitter and Popular posts sidebars 0.o
They came with the theme and don't appear on my widgets page

Admin dashboard -> Appearance -> Editor

On the right site, find Sidebar (sidebar.php) and open it.

Find this (CTRL + F)
PHP:
<?php include (TEMPLATEPATH . '/tabs2.php'); ?>                
<?php include (TEMPLATEPATH . '/tabs.php'); ?>
and delete it.
Then click Update file and you are done ;)
 
Premium accounts for uploading etc sites like that


Enviado desde mi U8650 usando Tapatalk

Well no wonder Google ads are not working, that is ilegal niche for Google :)

I suggest you try porn ads provider, as many visitors come to such pages in search for Brazzers accounts etc.
 
Okay, what's the different of a custom-made WP theme that have the same functionality with the an HTML-based site? (Assuming both have the same functions and stuff).

Clearly, I am not good with developing sites. haha.
 
Well no wonder Google ads are not working, that is ilegal niche for Google :)

I suggest you try porn ads provider, as many visitors come to such pages in search for Brazzers accounts etc.

Can you recomend any?

Enviado desde mi U8650 usando Tapatalk
 
Okay, what's the different of a custom-made WP theme that have the same functionality with the an HTML-based site? (Assuming both have the same functions and stuff).

Clearly, I am not good with developing sites. haha.

Html website - You have to manually update it through code, while with WordPress, you have fantastic user interface.

Also, with html page, you are on your own for functionality, while WordPress has thousands of plugins.
 
Admin dashboard -> Appearance -> Editor

On the right site, find Sidebar (sidebar.php) and open it.

Find this (CTRL + F)
PHP:
<?php include (TEMPLATEPATH . '/tabs2.php'); ?>                
<?php include (TEMPLATEPATH . '/tabs.php'); ?>
and delete it.
Then click Update file and you are done ;)

Its fixed, thanks :D
 
Hi, I have had the nightmare, and its still going. My sites were all hacked, and blacklisted. Im desperatly trying to clean them, but loosing the battle. I DONT know what to do... Should i use something like sucuri or do I just give up. HELP desperatly needed please....
 
I suggest you do the following:

Backup all your databases, delete everything and then install fresh wordpress - restore databases.

is that possible? How many sites are wetalking about?
 
about 15. I have backups on my desktop, have run them through many scans and seem ok. Can I restore a fresh wordpress and then bring my old content/ posts into it?
 
Hmm weird, they are not connected in any way. Try adding the code back and see if that fixes the problem? Let me know.

That didn't fix it, i deleted and reinstalled it but it still doesn't work, might be an issue with the theme itself.
Could you recommend me another one? Its for an anime website. I'd like something that looks like minitheatre.org
 
about 15. I have backups on my desktop, have run them through many scans and seem ok. Can I restore a fresh wordpress and then bring my old content/ posts into it?

Do you also have database backups?
 
That didn't fix it, i deleted and reinstalled it but it still doesn't work, might be an issue with the theme itself.
Could you recommend me another one? Its for an anime website. I'd like something that looks like minitheatre.org
I suggest you going through themeforest.net and then searching theme here or on warez-bb.
 
Status
Not open for further replies.
Back
Top