wordpress member

That thought is kind of subjective. Dealing with wordpress membership mostly just needs messing with its built-in role and capabilities, unless you really have a complex membership setup which you shouldn’t have use wordpress to begin with. But for a basic membership, a typical set-up involves the following. Create a custom roles and assign specific … Read more

I need help about wordpress of members section

If I understand correctly you don’t need a shortcode or a filter. Just paste your yg_yorumsuz_link_gizle function into functions.php and call it from any template file (they all reside in your theme folder) such as single.php, or from a plugin. if(function_exists(‘yg_yorumsuz_link_gizle’)){ // just in case yg_yorumsuz_link_gizle(); } If you’re only doing it in one place … Read more

one time visit to the page

Although this is not a WP question, it could be done with some PHP/MySQL code. Just the psuedocode: generate a GUID value on each main page visit check if the GUID is already in the GUID database if not, store the GUID in the GUID database if GUID exists in the database, redirect to another … Read more