Tagged Questions
0
votes
1answer
37 views
Wordpress do not display thumbnails correctly
For all the pics I upload to Wordpress I get such a link to the pic:
...
0
votes
2answers
110 views
wordpress: cant get category id when SEO URL is turned on
<?php
/*
Plugin Name: Members
*/
function myFilter2($query)
{
if ($query->is_category)
{
$currently_listing_categories = ...
-1
votes
1answer
189 views
PHP $_session is not work in wordpress
why PHP $_session is not working in wordpress my php code is
session_start();
session_register('lang_opt');
$_SESSION['lang_opt'] = $_POST['lang_opt'];
$mylang = $_SESSION['lang_opt'];
echo ...
2
votes
1answer
1k views
how to add a .php file to wordpress
I have a php file in my server (say www.example.com/up/up.php). If i access that file through the url, my site says no page found. but i want to call that php file using url parameter. I want to call ...
-1
votes
1answer
121 views
which table updated after logout?
I am working on wordpress in which on clicking logout button user will be logout using
<?php wp_logout(); ?> function
when I followed some guidelines on wordpress site I came to know that it ...
0
votes
3answers
1k views
Create post from form with image
I found this wonderdul script that @Bainternet here at Wordpress Answers created, that makes it possible to attach images into posts from a html form..
I tried to combine in into my "html form to ...